PHP打印自己的代码

时间:2018-02-21 08:24:30

标签: php server instagram-api

我有这段代码:

<?php

set_time_limit(0);
date_default_timezone_set('UTC');

require __DIR__.'/../vendor/autoload.php';

/////// CONFIG ///////
$username = 'NetsGets';
$password = 'NetsGetsWebsite';
$debug = true;
$truncatedDebug = false;
//////////////////////

$ig = new \InstagramAPI\Instagram($debug, $truncatedDebug);

try {
    $ig->login($username, $password);
} catch (\Exception $e) {
    echo 'Something went wrong: '.$e->getMessage()."\n";
    exit(0);
}

?>

当我运行此代码时,它只打印代码而不是它应该运行的代码...为什么它不运行代码? (我使用Instagram私有API for PHP btw)。

0 个答案:

没有答案