<?php
class oopClass{
function __construct($editingtext, $searchfor, $replacewith){
if(!empty($editingtext) && !empty($searchfor) && !empty($replacewith)){
$editingtext = str_replace($searchfor,$replacewith,$editingtext);
echo $editingtext;
}else{
echo 'All Fields Are Required.';
}
}
}
//closing php
代码正在运行,但由于没有设置类的属性,这是一个不好的做法,这个代码的哪些变量应该设置为类属性,为什么?
答案 0 :(得分:0)
如果上面的代码是您计划使用此代码的所有内容,那么这并不一定是不好的做法。如果您需要扩展其功能,我可能会想象$editingtext
可能是一个属性。
class oopClass{
private $editingtext;
function __construct($editingtext, $searchfor, $replacewith){
$this->editingtext = $editingtext;
if(!empty($this->editingtext) && !empty($searchfor) && !empty($replacewith)){
$this->editingtext = str_replace($searchfor,$replacewith,$this->editingtext);
echo $this->editingtext;
}else{
echo 'All Fields Are Required.';
}
}
}
//closing php
答案 1 :(得分:0)
您的代码还有其他问题,并不是缺少属性。您正在构造一个对象,并在构造函数中输出结果。这是不好的做法。
我会解决这个问题:
class TextReplacer {
var $search;
var $replace;
function __construct($s, $r) {
$this->search = $s;
$this->replace = $r;
}
function replace($text) {
// your code, using the properties for search and replace, RETURNING the result
return $ret;
}
}
然后打电话给:
$oo = new TextReplacer("bar", "baz");
echo $oo->replace("let's replace some bars in here");
简而言之: