我的目錄結構:如何在我的代碼中使用這個PHP類?
bencode_test-
|--> BEncode.php
|--> bencode_test.php
|--> ubuntu-15.10-desktop-amd64.iso.torrent
my code:
<?php
require 'BEncode.php';
$bcoder = new BEncode();
$torrent = $bcoder->bdecode(File::get('ubuntu-15.10-desktop-amd64.iso.torrent'));
var_dump($torrent);
?>
我從this Github account了BEncode.php。
當我運行我的代碼,bencode_test.php在命令行中,我得到的錯誤是:
PHP Fatal error: Class 'BEncode' not found in /home/user/bencode_test/bencode_test.php on line 3
誰能告訴我什麼,我做錯了什麼?
謝謝阿卜杜拉。你能告訴我爲什麼創建者在他的README.md中使用了新的操作符? – user465001
http://stackoverflow.com/questions/8655937/what-is-the-difference-between-readme-and-readme-md-in-github-projects –