酒店预订平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Stringable.php 165 B

3年前
1234567891011
  1. <?php
  2. if (\PHP_VERSION_ID < 80000) {
  3. interface Stringable
  4. {
  5. /**
  6. * @return string
  7. */
  8. public function __toString();
  9. }
  10. }