Ir al contenido principal

How to generate a new Ethereum address in PHP

Actualizado el
26 de noviembre de 2025

5 minutos de lectura

Resumen

PHP is very popular in developing the backend of websites or web applications. PHP has a huge crowd of developers trusting it as their go-to language. In this guide, we will see how we can generate a new Ethereum address in PHP.

Requisitos previos

  • PHP 7.0 or above installed with gmp extension.
  • Composer installed
  • Un editor de texto
  • CLI

¿Qué es una dirección de Ethereum?

Al iniciar sesión en cualquier plataforma de Internet, debes autenticarte mediante una combinación de credenciales. Piensa en una dirección de Ethereum como tu nombre de usuario y en la clave privada correspondiente como la contraseña. Aunque tu dirección de Ethereum es pública y se puede compartir, la clave privada debe mantenerse siempre en secreto. El uso de esta combinación te permite interactuar con la cadena de bloques de Ethereum. Una dirección de Ethereum es tu identidad en la cadena de bloques y tiene este aspecto: «0x6E0d01A76C3Cf4288372a29124A26D4353EE51BE». Es necesario disponer de una dirección de Ethereum válida para:

  • Recibir/enviar Ethereum
  • Firma y envío de transacciones
  • Conexión a aplicaciones descentralizadas

Cómo se genera una dirección de Ethereum:

A random private key of 64 (hex) characters (256 bits / 32 bytes) is generated first. For example:

0xf4a2b939592564feb35ab10a8e04f6f2fe0943579fb3c9c33505298978b74893

A 128 (hex) character (64 bytes) public key is then derived from the generated private key using Elliptic Curve Digital Signature Algorithm (ECDSA). For example:

0x04345f1a86ebf24a6dbeff80f6a2a574d46efaa3ad3988de94aa68b695f09db9ddca37439f99548da0a1fe4acf4721a945a599a5d789c18a06b20349e803fdbbe

The Keccak-256 hash function is then applied to (128 characters / 64 bytes) the public key to obtain a 64 character (32 bytes) hash string. The last 40 characters / 20 bytes of this string prefixed with 0x become the final Ethereum address. For example:

0xd5e099c71b797516c10ed0f0d895f429c2781142

Nota: «0x» en la codificación indica que el número o la cadena está escrito en hexadecimal.

¿Qué es PHP?

PHP is a recursive acronym for Hypertext Preprocessor; PHP is a widely used open-source server-side scripting language usually embedded in HTML. It is used to manage databases, session tracking, dynamic content; It works with almost all the popular databases like MySQL, PostgreSQL, MS SQL Server, etc. It has C language-like syntax and supports significant protocols like LDAP, IMAP, and POP3. PHP4 added support for Java and distributed object architectures (COM and CORBA), making n-tier development possible for the first time.

**
Everyday use cases of PHP
**

  • To set and access cookie variables.
  • To gather information from web forms.
  • To perform system functions like opening and closing files.
  • To add, delete, and modify elements in databases.
  • Adding user-based restrictions on webpages.

**
Following are some characteristics of PHP
**

  • Scalability
  • Flexibility
  • Simplicity
  • Case Sensitive
  • Loosely typed
  • Interpreted
  • Código abierto

Installing PHP and other dependencies

Before installing the dependencies, which we require to generate an address, let’s check if we have PHP installed on our system. To do so, copy-paste and run the following in your terminal/cmd.

$ php -v

It should return the PHP version; if not installed, download the operating system-specific PHP following the instructions on the official PHP website’s download page.

We’ll need to install the PHP gmp extension; you can either uncomment it from the php.init file or install it manually using the following.

$ sudo apt-get install php-gmp

Nota: Debemos habilitar gmp utilizando únicamente uno de los métodos mencionados anteriormente. 

Para Mac:

Reinstalling PHP with brew can help to enable the gmp extension, type the following commands:

$ brew reinstall php@7.2
$ export PATH="/usr/local/opt/php@7.2/bin:$PATH"
$ brew services restart php@7.2
$ php -info | grep "GMP"

We’ll use composer (A dependency manager for PHP) to manage PHP libraries/dependencies required to generate addresses and keys. Check if the composer is installed on your system or not by running the following in your terminal/cmd:

Si aún no lo tienes instalado, descárgalo e instálalo siguiendo las instrucciones de la página de descargas del sitio web de Composer.

Ahora crea un archivo JSON llamado composer.json en el directorio de tu proyecto y copia y pega en él lo siguiente.

{
"require": {
"sop/asn1": "^3.3",
"sop/crypto-encoding": "^0.2.0",
"sop/crypto-types": "^0.2.1",
"kornrunner/keccak": "^1.0",
"symfony/dotenv": "^4.0",
"sc0vu/web3.php": "dev-master"
}
}

Save the file and install the dependencies using composer:

$ composer install

This will install the required dependencies in the directory.

Generating an Ethereum address in PHP

Now make a new PHP file named Address.php in the directory and copy-paste the following in it.

<?

require_once "vendor/autoload.";

use Sop\CryptoTypes\Asymmetric\EC\ECPublicKey;
use Sop\CryptoTypes\Asymmetric\EC\ECPrivateKey;
use Sop\CryptoEncoding\PEM;
use kornrunner\Keccak;

$config = [
'private_key_type' => OPENSSL_KEYTYPE_EC,
'curve_name' => 'secp256k1'
];

$res = openssl_pkey_new($config);

if (!$res) {
echo 'ERROR: Fail to generate private key. -> ' . openssl_error_string();
exit;
}

openssl_pkey_export($res, $priv_key);

$key_detail = openssl_pkey_get_details($res);
$pub_key = $key_detail["key"];

$priv_pem = PEM::fromString($priv_key);

$ec_priv_key = ECPrivateKey::fromPEM($priv_pem);

$ec_priv_seq = $ec_priv_key->toASN1();

$priv_key_hex = bin2hex($ec_priv_seq->at(1)->asOctetString()->string());
$priv_key_len = strlen($priv_key_hex) / 2;
$pub_key_hex = bin2hex($ec_priv_seq->at(3)->asTagged()->asExplicit()->asBitString()->string());
$pub_key_len = strlen($pub_key_hex) / 2;

$pub_key_hex_2 = substr($pub_key_hex, 2);
$pub_key_len_2 = strlen($pub_key_hex_2) / 2;

$hash = Keccak::hash(hex2bin($pub_key_hex_2), 256);

$wallet_address = '0x' . substr($hash, -40);
$wallet_private_key = '0x' . $priv_key_hex;

echo "\r\n SAVE BUT DO NOT SHARE THIS (Private Key): " . $wallet_private_key;
echo "\r\n Address: " . $wallet_address . " \n";
?>

Explicación del código anterior

Línea 1: Inicio del script PHP con la etiqueta de apertura de PHP.

Line 3-8: Importing the installed dependencies.

Line 10-20: Using secp256k1 curve to generate the private key.

Line 22: Generating the private key.

Line 24-25: Getting the public key.

Line 29-31: Converting key to Elliptic Curve Private Key Format then converting it to ASN1 Structure.

Line 33-36: Getting Private and public key in hex format.

Line 38-39: Deriving the Ethereum Address from the public key, every public key always starts with 0x04,

removing the leading 0x04 to hash it correctly.

Line 41: Getting the address in hash format.

Line 43: Adding 0x prefix and getting last 40 characters of the address hash and storing it in wallet_address variable.

Line 44: Adding 0x prefix to the private key and storing it in wallet_private_key variable.

Line 46: Printing the private key with a warning.

Line 47: Printing the Ethereum address with the string “Address:”

Now save the file and run the script.

$ php Address.php

If everything works as planned, it should look like this.

Conclusión

Congratulations on generating your very own Ethereum address in PHP; you can use this to make fantastic decentralized wallets.

Suscríbete a nuestro boletín para recibir más artículos y guías sobre Ethereum. Si tienes algún comentario, no dudes en ponerte en contacto con nosotros a través de Twitter. Siempre puedes charlar con nosotros en nuestro servidor de la comunidad de Discord, donde encontrarás a algunos de los desarrolladores más geniales que jamás hayas conocido :)

Comparte esta guía