访问课程时有几个问题?
<?
class Contact {
//protected $message = "Hello World";
function __construct($message){
echo $this ->message;
}
function getName() {
}
}
$con = new Contact("Hello World");
?>
<form method="post" action="Contact.php">
- 当我编译这个类时,它不打印“Hello World”,为什么?
- 我如何在表单操作中调用 getName() 函数。下面是正确的方法。
<form method="post" action={$con->getName()}>
<?
class Contact {
//protected $message = "Hello World";
function __construct($message){
echo $this ->message;
}
function getName() {
}
}
$con = new Contact("Hello World");
?>
<form method="post" action="Contact.php">
- When i compile this class, its not printing "Hello World" Why?
- How can i call the getName() function in my form action. Is the below right way.
<form method="post" action={$con->getName()}>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
A) 你不编译 PHP
B)
$message
不是一个实例变量,它是一个参数:你将 PHP 方法调用注入 HTML 的方式:
你注释掉的
//protected $message = "Hello World"
走在正确的轨道上。像这样的东西是理想的:像这样使用:
A) You don't compile PHP
B)
$message
isn't an instance variable, it's a parameter:The way you inject your PHP method calls into HTML:
Your commented out
//protected $message = "Hello World"
is on the right track. Something like this would be ideal:Used like so: