1--TEST-- 2Testing interface_exists() 3--FILE-- 4<?php 5 6interface foo { 7} 8 9var_dump(interface_exists('foo')); 10var_dump(interface_exists(1)); 11 12?> 13--EXPECT-- 14bool(true) 15bool(false) 16