php에서 이런 클래스 정의 시, 이걸 활용해 값을 출력하려면?
본문
<?php
class IPv4Address implements Stringable {
public function __construct(private string $oct1, private string $oct2, private string $oct3, private string $oct4) {
}
public function __toString(): string {
return "$this->oct1.$this->oct2.$this->oct3.$this->oct4";
}
}
?>
https://www.php.net/manual/en/class.stringable.php
활용 방법 예제 좀 부탁드려요.
!-->답변 2
$tmp1= 'abc';
$tmp2=
new IPv4Address('123', '234', '42', '9');
$tmp3= $tmp1 . $tmp2; // 이런 것이 가능하죠.
해당 링크에 답이 있었네요. ㅎ
요런 식으로 독립변수 넣어 사용하네요.
$ip = new IPv4Address('123', '234', '42', '9');
답변을 작성하시기 전에 로그인 해주세요.