PhpTips.im - Everything about php - Download CMS, find tips and tricks, code snippetz, classes and more and more...
Bookmark this page !
   

Articles

    Home » Articles » PHP Snippets
Browsing PHP Snippets RSS RSS

   Pages :   0     1     2     3     4     5     6     7     8     9     10     11     12     13     14     15     16     17     18     19     20     21     22     23     24     25     26     27     28     29     30     31     32     33     34     35     36     37     38     39     40     41     42     43     44     45     46     47     48     49     50     51     52     53     54     55     56     57     58     59     60     61     62     63     64     65     66     67     68     69     70     71     72     73     74     75     76     77     78     79     80     81     82     83     84     85     86     87     88     89     90     91     92     93  
YouTube video ID from URL
Published on : 08.05.2010 Category : PHP Snippets Viewed : 47 times.
Parses any kind of YouTube URL and returns the video ID. [code] function getYoutubeVideoID($sVideoURL) { $sVideoID = ...
Read More »

Detect utf8 string
Published on : 08.05.2010 Category : PHP Snippets Viewed : 33 times.
[code] /**  * Returns true if $string is valid UTF-8 and false otherwise.  *  * @param mixed $str String to be tested...
Read More »

Drupal - get email addresses by role
Published on : 08.05.2010 Category : PHP Snippets Viewed : 24 times.
[code] function _get_emails_by_role( $role ) { $q = "SELECT u.mail AS email "; $q ...
Read More »

Delete all nodes by content type
Published on : 08.05.2010 Category : PHP Snippets Viewed : 29 times.
[code] <?php$type = 'YOUR CONTENT TYPE';$aquery = db_query('SELECT n.nid FROM {node} n WHERE n.type = "%s"'...
Read More »

Oembed
Published on : 08.05.2010 Category : PHP Snippets Viewed : 45 times.
Function to use the oembed services in php [code] // Curl helper functionfunction curl_get($url) { $curl =...
Read More »

PHP Browser Detect
Published on : 08.05.2010 Category : PHP Snippets Viewed : 24 times.
[code] function getBrowser(){ $return = array("navigator"=>...
Read More »

PHP Replace Tag
Published on : 08.05.2010 Category : PHP Snippets Viewed : 24 times.
Find the tags {} and replace them by the value of the key in a array. [code] $str = "hola {all} todos {le} monde";$ar = array(...
Read More »

PHP Date moins / plus n jours / mois
Published on : 08.05.2010 Category : PHP Snippets Viewed : 73 times.
[code] $nbDays = 15;$dateBase = time();$dateNew ...
Read More »

Recursive CHMOD with PHP
Published on : 08.05.2010 Category : PHP Snippets Viewed : 24 times.
[code] <?phpfunction chmod_R($path, $filemode) {$dh = opendir($pa...
Read More »

Php includes
Published on : 08.05.2010 Category : PHP Snippets Viewed : 22 times.
If you're using includes that sit in different relative locations to the files your including into, you normally end up with stuff like include("../../header.php") in one place and include("../../../header.php") in another. This is a bit easier, but be sure to include a leading /, because depending on your sever configuration, it may or may not add one for you. It's better to have 2 /s than none. [code] ...
Read More »

 

 Members
Log In !
Email Address :

Password :


Change my passowrd !
Sign Up !
We have : 3 members.
Latest member : albans
 
 Last Posts
 
 Advertising
 
©PhpTips.im 2010
Powered by PikaCMS.
Quick Links :
Home | Browse all articles | Downloads | Terms of Use
RSS RSS 2.0 : Articles | Downloads ATOM : Articles | Downloads