In this short tutorial, we’ll connect to IPFS using the php-ipfs-api. This library requires PHP 7.3 and the curl and json extensions. You can download the library from here.

Connecting to IPFS using the library.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$ composer require rannmann/php-ipfs-api
$ composer install
use rannmann\PhpIpfsApi\IPFS;
// connect to ipfs daemon API server
$ipfs = new IPFS("localhost", 8080, 5001); // leaving out the arguments will default to these values
$ composer require rannmann/php-ipfs-api $ composer install use rannmann\PhpIpfsApi\IPFS; // connect to ipfs daemon API server $ipfs = new IPFS("localhost", 8080, 5001); // leaving out the arguments will default to these values
$ composer require rannmann/php-ipfs-api
$ composer install
use rannmann\PhpIpfsApi\IPFS;

// connect to ipfs daemon API server
$ipfs = new IPFS("localhost", 8080, 5001); // leaving out the arguments will default to these values

add

Adds content to IPFS.

Usage

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$hash = $ipfs->add("Hello world");
$hash = $ipfs->add("Hello world");
$hash = $ipfs->add("Hello world");

addFromPath

Adds content to IPFS from a filename (helper method)

Usage

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$hash = $ipfs->addFromPath("myFile.txt");
$hash = $ipfs->addFromPath("myFile.txt");
$hash = $ipfs->addFromPath("myFile.txt");

addFromUrl

Adds content ot IPFS from a web URL (helper method)

Usage

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$hash = $ipfs->addFromUrl('https://mysite.com/img.png');
$hash = $ipfs->addFromUrl('https://mysite.com/img.png');
$hash = $ipfs->addFromUrl('https://mysite.com/img.png');

get

Retrieves the contents of a single hash.

Usage

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$ipfs->get($hash);
$ipfs->get($hash);
$ipfs->get($hash);

ls

Gets the node structure of a hash.

Usage

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$nodes = $ipfs->ls($hash); foreach ($nodes as $node) { echo $node['Hash']; echo $node['Size']; echo $node['Name']; }
$nodes = $ipfs->ls($hash); foreach ($nodes as $node) { echo $node['Hash']; echo $node['Size']; echo $node['Name']; }
$nodes = $ipfs->ls($hash); foreach ($nodes as $node) { echo $node['Hash']; echo $node['Size']; echo $node['Name']; }

Object size

Returns object size.

Usage

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$size = $ipfs->size($hash);
$size = $ipfs->size($hash);
$size = $ipfs->size($hash);

Pin

Pin or unpin a hash.

Usage

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$ipfs->pinAdd($hash);
$ipfs->pinRm($hash);
$ipfs->pinAdd($hash); $ipfs->pinRm($hash);
$ipfs->pinAdd($hash); 
$ipfs->pinRm($hash);

ID

Get information about your ipfs node.

Usage

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
print_r($ipfs->id());
print_r($ipfs->id());
print_r($ipfs->id());

MIT Licensed