<?php Function str($a){ $len=strlen($a); //函数返回字符串 "Shanghai" 的长度: $b=""; for($i=$len-1;$i>=0;$i--){ $b.=$a[$i]; } return $b; } $a='yangzl'; $res = this->str($a); echo $res;
你这段代码并没有存在的对象
所以不能用 $this
改为
$res = str($a);
如果想用 $this 在最外面要加上 class
$this 只能在对象内部使用
对象外部需要用实例后的对象来调用
$std = new std(); $r = $std -> fun();
谢谢啊 明白了