PHP 在 Fedex 函数中返回
不知道我是否应该添加到这篇文章中,但它有点相关,我认为
这很好用,
function getProperty($var)
{
if($var == 'check')
Return true;
if($var == 'shipaccount')
Return '286096425543324';
但这不行吗?一个人如何进入一个
$fedex_account = "286096425543324";
function getProperty($var)
{
if($var == 'check')
Return true;
if($var == 'shipaccount')
Return '$fedex_account';
Dont know if I should add to this post or not but it is kind of relevant I think
This works just fine
function getProperty($var)
{
if($var == 'check')
Return true;
if($var == 'shipaccount')
Return '286096425543324';
But this does not? How would one enter a
$fedex_account = "286096425543324";
function getProperty($var)
{
if($var == 'check')
Return true;
if($var == 'shipaccount')
Return '$fedex_account';
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
单引号不扩展变量。只需这样做:
Single quotes don't expand variables. Just do this:
了解可见性 -
$fedex_account
位于其他范围。以及关于引用。
Read about Visibility -
$fedex_account
are in other scope.and about quotes.