2016-04-18 6 views
0

Ich habe php amqp Erweiterung mit pecl install amqp installiert und extension=amqp.so in die php.ini hinzugefügt. Aber ich bekomme immer noch einen Fehler, wenn Sie die code from rabbitmq's tutorial ausführen. Was ist los mit dir?PHP Fataler Fehler: Klasse 'PhpAmqpLib Connection AMQPStreamConnection' nicht gefunden

[[email protected]_67_229_centos rabbit_mq_test]# php phpinfo.php | grep amqp 
PHP Warning: phpinfo(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /data/roxma/rabbit_mq_test/phpinfo.php on line 2 
amqp 
amqp.auto_ack => 0 => 0 
amqp.channel_max => 256 => 256 
amqp.connect_timeout => 0 => 0 
amqp.frame_max => 131072 => 131072 
amqp.heartbeat => 0 => 0 
amqp.host => localhost => localhost 
amqp.login => guest => guest 
amqp.password => guest => guest 
amqp.port => 5672 => 5672 
amqp.prefetch_count => 3 => 3 
amqp.read_timeout => 0 => 0 
amqp.timeout => no value => no value 
amqp.vhost =>/=>/
amqp.write_timeout => 0 => 0 

[[email protected]_67_229_centos rabbit_mq_test]# php send.php 
PHP Fatal error: Class 'PhpAmqpLib\Connection\AMQPStreamConnection' not found in /data/roxma/rabbit_mq_test/send.php on line 6 

Antwort

0

ich fugured Ich habe nur verwirrt zwischen php-amqplib und amqp extension

AMQPStreamConnection PHP ist nicht Teil der AMQP-Erweiterung von PHP :(

Verwandte Themen