在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:kesar/IPFS-PHP开源软件地址:https://github.com/kesar/IPFS-PHP开源编程语言:PHP 100.0%开源软件介绍:IPFS Client in PHPInstall: composer require nebulaprotocol/ipfs-php Examples:use IPFSPHP\IPFS;
include 'vendor/autoload.php';
$ipfs = new IPFS('127.0.0.1', 8080, 5001);
APIaddAdds content to IPFS. Usage $hash = $ipfs->add($filePath); catRetrieves the contents of a single hash. Usage $ipfs->cat($hash); lsGets the node structure of a hash. Usage $obj = $ipfs->ls($hash);
foreach ($obj as $e) {
echo $e['Hash'];
echo $e['Size'];
echo $e['Name'];
} Object sizeReturns object size. Usage $size = $ipfs->size($hash); PinPins a hash. Usage $ipfs->pinAdd($hash); CREDITSInitially forked from https://github.com/cloutier/php-ipfs-api |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论