我已經寫了一個MVC框架,並且我正在使用ob_start('error_handler')來捕捉致命錯誤。這很好用! 在boot.php // Start the error-logging
ob_start('error_logging');
// Run the request
Request::run(URL::getInstance()->init()->formatURL());
我需要學習如何使用PHP刪除html標籤。 這是我的想法(我認爲DOM的措辭是我需要的,但我無法弄清它是如何工作的,一個可行的例子對我來說是一個很大的幫助,我不能安裝任何外部庫和我正在運行PHP 5): function the_remove_function($remove){
// dom parser code here?
return $remove;}
// return a
我有兩個功能: core_function($atts) {
(attributes)
(core functions, a few loops, echoes, a lot of direct input)
}
這就是我如何使用輸出緩衝顯示我的功能(是的,我一直用它!)。 display_function($atts) {
(attribute
我想獲得輸出「蘋果」,因爲它在span標記裏面有一個叫做水果的id。那麼應該在該回調函數中寫入哪些代碼? <?php
function callback($buffer) {
// get the fruit inHTML text, the output should be "Apples" only
....
....
}
ob