-1
我想做一個類可以處理未定義變量的字符串。這可能嗎?或者,還有更好的方法?
舉例來說,如果我有以下的,並希望這一類的Looper採取$str_1
並輸出與變量$fname
和$lname
填寫了...然後在其他地方我可以重用尺蠖類和過程$str_2
,因爲它們都需要$fname
和$lname
。php類傳入未定義的變量
class Looper {
public function processLoop($str){
$s='';
$i=0;
while ($i < 4){
$fname = 'f' . $i;
$lname = 'l' . $i;
$s .= $str . '<br />';
$i++;
}
return $s;
}
}
$str_1 = "First Name: $fname, Last Name: $lname";
$rl = new Looper;
print $rl->processLoop($str_1);
$str_2 = "Lorem Ipsum $fname $lname is simply dummy text of the printing and typesetting industry";
print $rl->processLoop($str_2);