PHP 中表单元素的正确语法
PHP 新手 -
如果我让 PHP 从表单中获取图片名称:
$pic=($_FILES['photo']['name']);
并且我想稍后在文件中动态引用该字段 (sample_name.jpg):
$resizeObj = new resize('images/sample_name.jpg');
正确的格式是什么?
使用 $resizeObj = new resize('images/'$pic'');
给我一个语法错误。
New to PHP-
If I have PHP getting a picture name from a form:
$pic=($_FILES['photo']['name']);
and I want to reference that field dynamically later in the file (sample_name.jpg):
$resizeObj = new resize('images/sample_name.jpg');
What is the proper formating?
Using $resizeObj = new resize('images/'$pic'');
gives me a syntax error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
请使用
并阅读这篇关于字符串的精彩介绍。
Use
instead, and read this nice introduction to strings.
您可以使用
.
表示字符串连接You may use
.
means string concatenation有几个选项:
是最常见的,但我个人不喜欢字符串中的变量,所以你可以选择:
或者甚至
There are several options:
is the most common, but I personally don't like variables in strings, so you could go with:
Or even
你可以使用两种方式
或
you can use 2 ways
or