cakephp 这条线是做什么的
我正在学习 cake php,需要知道如何跟踪以及这行代码的作用。 谢谢
echo $this->Form->hidden('TABLE1.0.nextpage',array('value'=>'/page8'));
I am learning cake php and need to know how to trace and what this line of code does.
thanks
echo $this->Form->hidden('TABLE1.0.nextpage',array('value'=>'/page8'));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该行输出一个值为“page8”的隐藏输入字段。
它应该产生这样的结果:
That line outputs a hidden input field with the value of 'page8'.
It should produce something like this: