CakeFest 2024: The Official CakePHP Conference

trait_exists

(PHP 5 >= 5.4.0, PHP 7, PHP 8)

trait_existsトレイトが存在するかどうかを調べる

説明

trait_exists(string $trait, bool $autoload = true): bool

パラメータ

trait

調べたいトレイトの名前。

autoload

まだロードされていない場合に オートロード するかどうか。

戻り値

トレイトが存在する場合に true、存在しない場合に false を返します。

add a note

User Contributed Notes 3 notes

up
10
Lubaev.K
10 years ago
<?php
trait World {

private static
$instance;
protected
$tmp;

public static function
World()
{
self::$instance = new static();
self::$instance->tmp = get_called_class().' '.__TRAIT__;

return
self::$instance;
}

}

if (
trait_exists( 'World' ) ) {

class
Hello {
use
World;

public function
text( $str )
{
return
$this->tmp.$str;
}
}

}

echo
Hello::World()->text('!!!'); // Hello World!!!
up
3
astinus dot eberhard at gmail dot com
7 years ago
Traits are compatible with class autoload mechanism - in fact, if you look at source code of trait_exists function, you will find similar peace of code (see Zend/zend_builtin_functions.c)
up
0
valerio dot bozzolan at gmail dot com
8 years ago
What is the default value of $autoload? And in which way traits are autoloaded? Is there something as spl_autoload() for traits?
To Top