我已经在ubuntu中安装了nginx,并且显然有更新版本的php,这迫使我在所有网站中放置app.directive( 'stage', function( $window ){
return {
restrict: 'E',
transclude: true,
scope: {
mystyle: '='
},
template: '<div ng-style="mystyle" ng-transclude></div>',
link: function( scope, attr ){
if( ! scope.mystyle.width ){
scope.mystyle.width = $window.innerWidth;
}
if( ! scope.mystyle.height ){
scope.mystyle.height = $window.innerHeight;
}
// scope.mystyle = {
// width: scope.width,
// height: scope.height
// };
console.log( 'style in directive', scope.mystyle );
}
};
});
如果没有读取,我有一个相当大而且严重的系统问题更新所有我可以删除该限制并使用简单的:Test1
set "xprvar=" for /F "skip=3 delims=" %%p in (variables.txt) do (echo %%p& goto break)
:break
pause
goto END
答案 0 :(得分:0)
您可以在php.ini上配置它。 Nginx不相关,它是一个Web服务器。
使用此命令启用短标记修改php.ini
sudo nano /etc/php5/apache2/php.ini
并添加此行
short_open_tag = On
关闭nano并使用此命令重新启动nginx
sudo service nginx restart