Compdigitec Labs

« | Home | »

Changing the user agent of PHP

By admin | August 20, 2008

If you ever need to adjust or change the default user agent that PHP accesses pages with (http and ftp wrappers) because either the default PHP user agent was blocked (“PHP”) or you wrote a bot with PHP and wish to customize it, you can do so easily with a php directive called “user_agent”. Note that 3rd party ways (such as cURL) are not affected by this setting.

To set it, you can use the following function:

<?php

function set_php_user_agent($useragent = ‘PHP’) {
$u = strval($useragent);
if(
ini_set(‘user_agent’,$u) === false) {
$r = false;
} else {
$r = true;
}
return
$r;
}

// Example:
set_php_user_agent(‘TestAgent/1.0 (http://www.example.com/testagent/)’);

?>

To get you started, here are some user agents for you to use or test:

If you found this article interesting or helpful, please help Compdigitec spread the word. Don’t forget to subscribe to Compdigitec Labs for more interesting articles!

If you found this article helpful or interesting, please help Compdigitec spread the word. Don’t forget to subscribe to Compdigitec Labs for more useful and interesting articles!

Topics: Internet, PHP | 956 Comments »

956 Responses to “Changing the user agent of PHP”

  1. ดอกไม้งานศพ Says:
    April 1st, 2026 at 13:59

    บทความนี้มีประโยชน์ ช่วยให้เลือกรูปแบบพวงหรีดได้ง่ายขึ้น

    Here is my webpage … ดอกไม้งานศพ

  2. ดอกไม้งานศพ Says:
    April 1st, 2026 at 14:32

    เป็นบทความที่อ่านแล้วได้ไอเดียวิธีเลือกพวงหรีดดอกไม้ เหมาะสมกับงานจริงๆ

    my web page ดอกไม้งานศพ

  3. Aorest Says:
    April 1st, 2026 at 16:47

    ขอบคุณสำหรับข้อมูลดีๆ เกี่ยวกับพวงหรีดดอกไม้สด

    Also visit my web site; Aorest

  4. ดอกไม้งานศพ Says:
    April 1st, 2026 at 20:07

    ขอบคุณสำหรับบทความดีๆ เกี่ยวกับพวงหรีดดอกไม้สด

    Visit myy website; ดอกไม้งานศพ

  5. ดอกไม้หน้าศพ Says:
    April 1st, 2026 at 20:13

    บทความนี้ดีมาก ช่วยให้เลือกพวงหรีดได้ง่ายขึ้น

    My web site ดอกไม้หน้าศพ

  6. ดอกไม้หน้าศพ Says:
    April 2nd, 2026 at 00:44

    เป็นบทความที่อ่านแล้วได้ไอเดียวิธีเลือกพวงหรีดดอกไม้ เหมาะสมกับงานจริงๆ

    Visit my homepage … ดอกไม้หน้าศพ

Comments