읽는 데 5분
개요
PHP is a very popular choice among developers and has a vast community due to its long presence in web development. In this guide, we’ll cover how to connect to Ethereum with PHP using the web3.php library.
필수 조건
- 텍스트 편집기
- CLI
PHP란 무엇인가요?
PHP, which initially stood for Personal Home Page, is now a recursive acronym for PHP: Hypertext Preprocessor. It is a general-purpose scripting language most commonly used for building back-ends of websites. PHP code is processed on the server-side by a PHP interpreter. PHP can be embedded in HTML, used in standalone files, and on the command line. It is open-source and cross-platform compatible. PHP 7+ is speedy, used by nearly 80% of websites, and has active development. It is high in demand and can be used to make dynamic websites, template systems, process user-submitted data, e-commerce websites, etc.
**Why use PHP?
**
- PHP is mature, well tested, and predictable.
- It has lots of open source libraries so that you can do many things with it right away.
- Though it is derived from the C++ family, PHP codes are comparatively shorter.
- It Integrates easily into the HTML/CSS stack, unlike other languages.
- It has many impressive frameworks such as Symfony and Laravel.
- It has a short learning curve when compared to JSP and ASP.
- It allows developers to achieve many complex things very quickly and easily.
**Characteristics of PHP?
**
- Scalability - helps to build scalable web applications.
- Flexibility - Works with major operating systems.
- Simplicity - Easy and straightforward to use compared to other scripting languages.
- Case Sensitive - PHP is a case-sensitive language at the time of variable declaration. All keywords, classes, functions, and user-defined functions are not case-sensitive.
- Loosely typed - In PHP, variables can be declared without the data type. It’s determined at the time of interpretation based on the kind of data it contains.
- Interpreted - PHP is an interpreted language, which means there’s no need for compilation.
- Open Source - It is open source, which means free to use and well maintained.
What is web3.php?
Web3.php is a PHP interface for connecting and interacting with the Ethereum blockchain. It is open-source, and can be used to get blockchain data and interact with deployed contracts. It has inbuilt support for eth, web3, net, and shh JSON RPC modules of Ethereum.
For our purpose today, we’ll fetch the latest block number of the Ethereum blockchain to demonstrate a connection between our code and Ethereum.
We’ll use web3.php and an Etherum node.
Installing PHP and web3.php
Before installing the web3.php, 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 by 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
참고: 위에서 언급한 방법 중 하나만을 사용하여 gmp를 활성화해야 합니다.
Mac의 경우:
Reinstalling PHP with brew can help to enable the gmp extension.
Run 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 tool to manage PHP libraries/dependencies. Check if composer is installed on your system by running the following in your terminal/cmd:
composer
설치되어 있지 않다면, Composer 웹사이트의 다운로드 페이지에 안내된 대로 다운로드하여 설치하십시오.
이제 프로젝트 디렉터리에 composer.json이라는 이름의 JSON 파일을 만들고, 다음 내용을 복사하여 붙여넣으세요.
{
"require": {
"sc0vu/web3.php": "dev-master"
}
}
Then run the following command to install the required dependencies in the directory.
composer install
Note: If you encounter any error on Linux at this point, try installing the following dependency:
sudo apt-get install php-mbstring
Quicknode 이더리움 엔드포인트 설정하기
We could use pretty much any Ethereum client; such as Geth or OpenEthereum (fka Parity), for our purposes today. Since that is a bit too involved for just querying the block height, we'll create a free Quicknode account here and easily generate an Ethereum endpoint. It can be a testnet (like Goerli or Sepolia) or Mainnet. After you've created your free Ethereum endpoint, copy your HTTP Provider endpoint:

나중에 필요할 테니, 복사해서 저장해 두세요.
Connecting to Ethereum with PHP
Now, make a PHP script file index.php in your project directory and copy-paste the following in it.
<?
require_once "vendor/autoload.";
use Web3\Web3;
use Web3\Providers\HttpProvider;
use Web3\RequestManagers\HttpRequestManager;
$web3 = new Web3(new HttpProvider(new HttpRequestManager("ADD_YOUR_ETHEREUM_NODE_URL")));
$eth = $web3->eth;
$eth->blockNumber(function ($err, $data) {
echo "Latest block number is: ". $data . " \n";
});
?>
Make sure to replace `ADD_YOUR_ETHEREUM_NODE_URL` with the HTTP provider from the section above.
위의 코드에 대한 설명.
1행: PHP 시작 태그로 PHP 스크립트를 시작합니다.
Line 3-7: Importing the installed dependencies.
Line 9: Initializing the web3 instance, a HttpProvider instance, and supplying the node URL.
Line 11: Making a new variable eth and connecting the web3 instance with eth to use eth methods using our node.
Line 13: Getting the latest block number from the chain using the blockNumber() method, which under the hood uses eth_blockNumber. We then print the block number along with a string.
Save the file and run the PHP script by typing the following in your terminal/cmd:
$ php index.php
If everything goes well, you will see an output that shows the latest block number.

결론
Congratulations on connecting to the Ethereum network using PHP. Now, you can take advantage of the Ethereum network by integrating it into your server-side applications, making them more secure and robust.
Learn How to generate a new Ethereum address in PHP and connect to the Ethereum network using various programming languages.
이더리움에 관한 더 많은 기사와 가이드를 받아보시려면 뉴스레터를 구독해 주세요. 의견이 있으시면 트위터를 통해 언제든지 연락해 주세요. 디스코드 커뮤니티 서버에서도 언제든지 저희와 대화를 나눌 수 있으며, 이곳에는 여러분이 만나볼 수 있는 가장 멋진 개발자들이 모여 있습니다 :)
