:: 之后出现 t_string 错误
好吧,抱歉这个即将到来的菜鸟问题。
我一直在寻找一个好的蛋糕用户管理插件,有人推荐我 Authsome (如果有人知道更好的东西>>请推荐)。
不管怎样,我正在尝试使用 git 的自述文件(非常简单)来设置它,但我遇到了一个问题:t_string 错误。代码:
解析错误:语法错误,意外的 T_VARIABLE,在 /Applications/XAMPP/xamppfiles/htdocs/trainer/app/controllers/users_controller.php 第 7 行中期待 T_FUNCTION
代码 users_controller:
<?php
class UsersController extends AppController {
var $name = 'Users';
var $scaffold;
$guest = Authsome::get();
debug($guest);
}
?>
所以,它是基本的-基本的..但这让我发疯!有人可以帮助我吗?提前谢谢...
Ok, sorry for this upcoming rookie question..
I was looking for a good user management plugin for cake, and i was recommended Authsome (if someone knows anything better>> plz recommend).
Anyway, i'm trying to set it up using the git's readme (very simple) but im running into a problem: t_string error. Code:
Parse error: syntax error, unexpected T_VARIABLE, expecting T_FUNCTION in /Applications/XAMPP/xamppfiles/htdocs/trainer/app/controllers/users_controller.php on line 7
Code users_controller:
<?php
class UsersController extends AppController {
var $name = 'Users';
var $scaffold;
$guest = Authsome::get();
debug($guest);
}
?>
So, its basic-the-la-basic.. but its driving me nuts! Could anyone plz help me? thx in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将执行代码放入函数中。目前在课堂上这是违法的。
You will want to put your executing code inside a function. It's illegal at this point in the class.