我想爲項目安裝小枝,但對服務器沒有命令行訪問權限。我只能通過ftp上傳文件。這意味着我必須手動設置twig庫,即自己創建Autoload.php文件。我已經徹底搜查過,但關於這個問題的信息很少。我嘗試了以下從不同項目「借來」的自動加載,但這不會產生工作設置。如何在不使用作曲者的情況下安裝小枝
<?php
/*
* This file is part of Twig.
*
* (c) 2009 Fabien Potencier
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Autoloads Twig classes.
*
* @author Fabien Potencier <[email protected]>
*/
class Twig_Autoloader
{
/**
* Registers Twig_Autoloader as an SPL autoloader.
*
* @param bool $prepend Whether to prepend the autoloader or not.
*/
public static function register($prepend = false)
{
if (version_compare(phpversion(), '5.3.0', '>=')) {
spl_autoload_register(array(__CLASS__, 'autoload'), true, $prepend);
} else {
spl_autoload_register(array(__CLASS__, 'autoload'));
}
}
/**
* Handles autoloading of classes.
*
* @param string $class A class name.
*/
public static function autoload($class)
{
if (0 !== strpos($class, 'Twig')) {
return;
}
if (is_file($file = dirname(__FILE__).'/../'.str_replace(array('_', "\0"), array('/', ''), $class).'.php')) {
require $file;
}
}
}
任何幫助,將不勝感激。
你有本地開發副本嗎?您可以使用Composer在本地安裝,然後使用您的部署過程來部署新版本。 – Chris
你能找到不同的託管服務提供商嗎? – user2182349