- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这段代码可以在我的本地主机和 one.com 虚拟主机上运行。但是在hostmonster.com的ftp上传时,浏览器返回500错误。我使用 TWIG 作为模板引擎。
页面链接如下:
不工作(hostmonster.com):http://armourertech.com/produit.php
工作(one.com):http://chacartz.fr/autre/armourer/produit.php
hostmonster.com 的技术人员告诉我错误在第 12 行:
$walkdir_gearbox = new Twig_SimpleFilter ( 'walkdir_gearbox', 函数 ($path_01)
代码:
<?php
require "twig.php";
require "nav.php";
$head_title = "armourertech";
$nav['produit'] = "actuel";
$keywords = "";
$description = "";
$robots = "index, follow";
$googlebot = "index, follow";
$walkdir_gearbox = new Twig_SimpleFilter ( 'walkdir_gearbox', function ($path_01) {//<-line 12
$path_01 = "img/x-hightech/01gearbox";
$d = new DirectoryIterator($path_01);
foreach($d as $f) {
if(
preg_match('/(\.gif|\.png|\.jpe?g)$/', $f->getFilename())
) {
list($w, $h) = getimagesize($f->getPathname());
$file = basename($f, ".jpg");
echo "<figure itemprop=\"associatedMedia\" itemscope itemtype=\"http://schema.org/ImageObject\"><a href=\"img/x-hightech/01gearbox/".$f->getFilename() . "\" itemprop=\"contentUrl\" data-size=\"".$w."x".$h."\"><img src=\"img/x-hightech/thumbs/01gearbox/".$f->getFilename() . "\" itemprop=\"thumbnail\" alt=\"".$file." - ARMOURERTECH\" /></a><figcaption itemprop=\"caption description\">".$file."</figcaption></figure>";
} elseif($f->isDir() && $f->getFilename() != '.' && $f->getFilename() != '..') {
walkdir_gearbox($f->getPathname());
}
}
});
$walkdir_gearboxcnc = new Twig_SimpleFilter ( 'walkdir_gearboxcnc', function ($path_02) {
$path_02 = "img/x-hightech/02fabrication-gearbox-cnc";
$d = new DirectoryIterator($path_02);
foreach($d as $f) {
if(
preg_match('/(\.gif|\.png|\.jpe?g)$/', $f->getFilename())
) {
list($w, $h) = getimagesize($f->getPathname());
$file = basename($f, ".jpg");
echo "<figure itemprop=\"associatedMedia\" itemscope itemtype=\"http://schema.org/ImageObject\"><a href=\"img/x-hightech/02fabrication-gearbox-cnc/".$f->getFilename() . "\" itemprop=\"contentUrl\" data-size=\"".$w."x".$h."\"><img src=\"img/x-hightech/thumbs/02fabrication-gearbox-cnc/".$f->getFilename() . "\" itemprop=\"thumbnail\" alt=\"".$file." - ARMOURERTECH\" /></a><figcaption itemprop=\"caption description\">".$file."</figcaption></figure>";
} elseif($f->isDir() && $f->getFilename() != '.' && $f->getFilename() != '..') {
walkdir_gearboxcnc($f->getPathname());
}
}
});
$walkdir_piston = new Twig_SimpleFilter ( 'walkdir_piston', function ($path_03) {
$path_03 = "img/x-hightech/03piston-gear-set";
$d = new DirectoryIterator($path_03);
foreach($d as $f) {
if(
preg_match('/(\.gif|\.png|\.jpe?g)$/', $f->getFilename())
) {
list($w, $h) = getimagesize($f->getPathname());
$file = basename($f, ".jpg");
echo "<figure itemprop=\"associatedMedia\" itemscope itemtype=\"http://schema.org/ImageObject\"><a href=\"img/x-hightech/03piston-gear-set/".$f->getFilename() . "\" itemprop=\"contentUrl\" data-size=\"".$w."x".$h."\"><img src=\"img/x-hightech/thumbs/03piston-gear-set/".$f->getFilename() . "\" itemprop=\"thumbnail\" alt=\"".$file." - ARMOURERTECH\" /></a><figcaption itemprop=\"caption description\">".$file."</figcaption></figure>";
} elseif($f->isDir() && $f->getFilename() != '.' && $f->getFilename() != '..') {
walkdir_piston($f->getPathname());
}
}
});
$walkdir_cylindre = new Twig_SimpleFilter ( 'walkdir_cylindre', function ($path_04) {
$path_04 = "img/x-hightech/04tete-cylindre";
$d = new DirectoryIterator($path_04);
foreach($d as $f) {
if(
preg_match('/(\.gif|\.png|\.jpe?g)$/', $f->getFilename())
) {
list($w, $h) = getimagesize($f->getPathname());
$file = basename($f, ".jpg");
echo "<figure itemprop=\"associatedMedia\" itemscope itemtype=\"http://schema.org/ImageObject\"><a href=\"img/x-hightech/04tete-cylindre/".$f->getFilename() . "\" itemprop=\"contentUrl\" data-size=\"".$w."x".$h."\"><img src=\"img/x-hightech/thumbs/04tete-cylindre/".$f->getFilename() . "\" itemprop=\"thumbnail\" alt=\"".$file." - ARMOURERTECH\" /></a><figcaption itemprop=\"caption description\">".$file."</figcaption></figure>";
} elseif($f->isDir() && $f->getFilename() != '.' && $f->getFilename() != '..') {
walkdir_cylindre($f->getPathname());
}
}
});
$walkdir_hopup = new Twig_SimpleFilter ( 'walkdir_hopup', function ($path_05) {
$path_05 = "img/x-hightech/05hopup";
$d = new DirectoryIterator($path_05);
foreach($d as $f) {
if(
preg_match('/(\.gif|\.png|\.jpe?g)$/', $f->getFilename())
) {
list($w, $h) = getimagesize($f->getPathname());
$file = basename($f, ".jpg");
echo "<figure itemprop=\"associatedMedia\" itemscope itemtype=\"http://schema.org/ImageObject\"><a href=\"img/x-hightech/05hopup/".$f->getFilename() . "\" itemprop=\"contentUrl\" data-size=\"".$w."x".$h."\"><img src=\"img/x-hightech/thumbs/05hopup/".$f->getFilename() . "\" itemprop=\"thumbnail\" alt=\"".$file." - ARMOURERTECH\" /></a><figcaption itemprop=\"caption description\">".$file."</figcaption></figure>";
} elseif($f->isDir() && $f->getFilename() != '.' && $f->getFilename() != '..') {
walkdir_hopup($f->getPathname());
}
}
});
$walkdir_autre = new Twig_SimpleFilter ( 'walkdir_autre', function ($path_06) {
$path_06 = "img/x-hightech/06autres";
$d = new DirectoryIterator($path_06);
foreach($d as $f) {
if(
preg_match('/(\.gif|\.png|\.jpe?g)$/', $f->getFilename())
) {
list($w, $h) = getimagesize($f->getPathname());
$file = basename($f, ".jpg");
echo "<figure itemprop=\"associatedMedia\" itemscope itemtype=\"http://schema.org/ImageObject\"><a href=\"img/x-hightech/06autres/".$f->getFilename() . "\" itemprop=\"contentUrl\" data-size=\"".$w."x".$h."\"><img src=\"img/x-hightech/thumbs/06autres/".$f->getFilename() . "\" itemprop=\"thumbnail\" alt=\"".$file." - ARMOURERTECH\" /></a><figcaption itemprop=\"caption description\">".$file."</figcaption></figure>";
} elseif($f->isDir() && $f->getFilename() != '.' && $f->getFilename() != '..') {
walkdir_autre($f->getPathname());
}
}
});
$twig = new Twig_Environment($loader);
$twig->addFilter($walkdir_gearbox);
$twig->addFilter($walkdir_gearboxcnc);
$twig->addFilter($walkdir_piston);
$twig->addFilter($walkdir_cylindre);
$twig->addFilter($walkdir_hopup);
$twig->addFilter($walkdir_autre);
echo $twig->render('produit.html', array(
'nav' => $nav,
'head_title' => $head_title,
'keywords' => $keywords,
'description' => $description,
'robots' => $robots,
'googlebot' => $googlebot
)
);
?>
然后我将这一行放在 html 中:
{{ 'twig' |walkdir_gearbox }}
这是 error.log 文件的最后几行
[15-Dec-2015 03:15:45] PHP Warning: PHP Startup: Unable to load dynamic library '/usr/php/54/usr/lib64/php/modules/imagick.so' - /usr/php/54/usr/lib64/php/modules/imagick.so: undefined symbol: zend_new_interned_string in Unknown on line 0
[15-Dec-2015 03:15:45] PHP Warning: PHP Startup: Unable to load dynamic library '/usr/php/54/usr/lib64/php/modules/http.so' - /usr/php/54/usr/lib64/php/modules/http.so: undefined symbol: zend_new_interned_string in Unknown on line 0
[15-Dec-2015 03:15:45] PHP Warning: PHP Startup: magickwand: Unable to initialize module
Module compiled with module API=20100525, debug=0, thread-safety=0
PHP compiled with module API=20060613, debug=0, thread-safety=0
These options need to match
in Unknown on line 0
[15-Dec-2015 03:15:45] PHP Warning: PHP Startup: Unable to load dynamic library '/usr/php/54/usr/lib64/php/modules/mailparse.so' - /usr/php/54/usr/lib64/php/modules/mailparse.so: undefined symbol: zend_new_interned_string in Unknown on line 0
[15-Dec-2015 03:15:45] PHP Warning: PHP Startup: Unable to load dynamic library '/usr/php/54/usr/lib64/php/modules/oauth.so' - /usr/php/54/usr/lib64/php/modules/oauth.so: undefined symbol: zend_new_interned_string in Unknown on line 0
[15-Dec-2015 03:15:45] PHP Warning: PHP Startup: Unable to load dynamic library '/usr/php/54/usr/lib64/php/modules/oci8.so' - /usr/php/54/usr/lib64/php/modules/oci8.so: undefined symbol: zend_new_interned_string in Unknown on line 0
[15-Dec-2015 03:15:45] PHP Warning: PHP Startup: Unable to load dynamic library '/usr/php/54/usr/lib64/php/modules/uploadprogress.so' - /usr/php/54/usr/lib64/php/modules/uploadprogress.so: undefined symbol: zend_ini_string_ex in Unknown on line 0
[15-Dec-2015 03:15:45] PHP Parse error: syntax error, unexpected T_FUNCTION in /home8/armourer/public_html/produit.php on line 12
是否有解决方案或我是否被迫更换供应商?
最佳答案
删除最后一行的“()”,应为:
echo $twig->render('produit.html');
此外,请检查 PHP 版本:匿名函数作为参数仅在 PHP 5.3.0 及更高版本上允许。
关于TWIG 和 "unexpected T_FUNCTION"返回 hostmonster.com 的服务器 500 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34288849/
一旦在 qconsole Marklogic 中运行以下代码,我就会遇到以下错误 XDMP-UNEXPECTED: (err:XPST0003) Unexpected token syntax err
我已经在我的包中编写了这个函数。 def partitionIntoDays(ls, number, lookupKey=None): ''' Partitions the location
我只是一个 android 初学者,我已经安装了 Android Studio(版本是 1.0.2),并创建了一个新的空白应用程序,按照名为“构建你的第一个应用程序”的官方教程,我学习到这个页面' h
这只是前几天工作,但我刚刚将我的代码更新到运行乘客 2.2.4 的审查服务器,而我的 2.3.4 rails 应用程序现在无法在那个盒子上启动。 乘客报告: Passenger encountered
我正在尝试使用带有 Angular 2的整页, 将其导入我的 app.module.ts 时出现以下错误。 "(SystemJS) Unexpected token ) at Obje
TFS2015 vNext 构建失败并出现记录器错误(下面附有错误消息)。根据我的调查,这看起来与 CentralLogger - "Microsoft.TeamFoundation.Distribu
计算机科学学校项目。我需要编写一个程序,其中用户声明数组的大小,然后以数字、非递减顺序填充数组,然后声明一个值 x。然后将 X 分配到适当的位置,以便整个数组按数字、非递减顺序排列。然后输出该数组。
在这 2 个方法中,inspect1 显示编译错误“Unexpected bound”而 inspect2 工作正常,为什么? public void inspect1(List u){ S
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我正在尝试运行以下代码,但遇到了“此时意外”错误。 (echo COPY (SELECT ta.colA as name, ta.colB as user_e, ta.colC as user_n,
我有以下查询: select u.UserName, count(*) as total from Voting v join User u using (UserID) where unique (
我们有以下查询在 MSSQL 中完美运行但在 MySQL 中无法运行: select CONVERT(datetime, dateVal) as DateOccurred, itemID, COUNT
我的代码中存在缩进错误问题。它看起来是正确的...有人能指出我做错了什么吗?我的查询行不断收到错误。 def invoice_details(myDeliveryID): conn = pym
我有以下代码: int a , b , sum; cin>>a>>b; sum=a+b; cout>a>>b>>c; cout<
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我在一个批处理文件上运行这个命令: for %I in (*.txt *.doc) do copy %I c:\test2 ...它不断返回: I was unexpected at this tim
创建查询时出现错误: 'from' unexpected 我的代码如下: @Override public Admin findByAdmin(Admin admin) {
我正在尝试运行此 python 代码,但我不断收到错误消息“意外缩进”。我不确定怎么了。间距似乎很好。有什么想法吗? services = ['Service1'] for service in
我在名为“circular_dependency”的目录中有一些 python 文件: 导入文件_1.py: from circular_dependency.import_file_2 import
我正在尝试使用 gcc 编译代码并运行可执行文件,但它抛出错误: gcc somefile.c -o somefile 编译成功。但是,当我尝试执行它时: $sh somefile 它导致:语法错误:
我是一名优秀的程序员,十分优秀!