0
私はこのPHPコードを持っており、class formular_validiation
からfunction firstnameLength()
に電話したいと思っています。クラス内の関数から関数を呼び出す
class formular_validiation
{
private static $minLength = 2;
private static $maxLength = 250;
public static function firstname() {
function firstnameLength($firstnameLength){
if ($firstnameLength < self::$minLength){
}
elseif ($firstnameLength > self::$maxLength) {
}
}
function firstnameNoSpace($firstnameNoSpace) {
preg_replace(" ", "", $firstnameNoSpace);
}
}
}
私のような何かについてthougth:
formular_validiation::firstname()::firstnamelength()
が、これは間違っています。
使用 'ます$ this-> FUNCTION_NAMEを'同じクラスのコール関数のために – abhayendra
これは機能しません。なぜなら関数が関数の中にあるからです。 – Blueblazer172