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  
PHP AdSense account monitor
Published on : 08.05.2010 Category : PHP Snippets Viewed : 26 times.
PHP AdSense account monitor class, can retrieve data from your AdSense account (impressions, clicks, ctr, ecpm, earnings). This class can retrieve (for now) only “AdSense for Content” data, for different periods of time (see class methods for more details). You can implement this PHP class in your own applications. Note: this code is absolete. Check new project at http://code.google.com/p/php-adsense-account-library/ [code] ...
Read More »

Recursively unset an array key
Published on : 08.05.2010 Category : PHP Snippets Viewed : 40 times.
This function takes an array and a key that is unwanted. It will recurse through and unset the key in the argument array and all its sub-arrays. [code] function recursive_unset(&$array, $unwanted_key) ...
Read More »

Vailidate email
Published on : 08.05.2010 Category : PHP Snippets Viewed : 24 times.
[code] function isValidMail( $mValue ){ return filter_var( $mValue, FILTER_VALIDATE_EM...
Read More »

IPSMember::isInGroup
Published on : 08.05.2010 Category : PHP Snippets Viewed : 42 times.
[code] <if test="IPSMember::isInGroup( $this->memberData, array(1,2,3) )"></if> [/code]...
Read More »

Disable ACP
Published on : 08.05.2010 Category : PHP Snippets Viewed : 27 times.
[code] FIND IN SOURCE IPS REGISTRY $validationStatus = self::member()->sessionClass(...
Read More »

Función que trunca texto con palabras completas
Published on : 08.05.2010 Category : PHP Snippets Viewed : 22 times.
Esta función sólo trunca una cadena cuando encuentra el punto de ruptura que le indiquemos -un espacio, un punto, dos puntos,..- y resulta muy útil, por ejemplo, para mostrar un extracto de un artículo completo sin romper las palabras. [code] // Original PHP code by Chirp Internet: www.chirp.com.au...
Read More »

Eliminar directorio con ficheros dentro
Published on : 08.05.2010 Category : PHP Snippets Viewed : 23 times.
Delete a directory including its contents. [code] /******@dir - Directory to destroy*@virtual[optional]- whether a virtual directory*/...
Read More »

Parse JSON Data
Published on : 08.05.2010 Category : PHP Snippets Viewed : 30 times.
With most of the popular web services like Twitter providing their data through APIs, it is always helpful to know how to parse API data which is sent in various formats including JSON, XML etc. [code] $json_string='{"id":1,"name":"foo","email":"foo@foobar.com","interest":["wordpress","php"]} ';...
Read More »

Parse XML Data
Published on : 08.05.2010 Category : PHP Snippets Viewed : 22 times.
[code] //xml string$xml_string="<?xml version='1.0'?><users> <user id='398'> <name>Foo</nam...
Read More »

Get Real IP Address of Client
Published on : 08.05.2010 Category : PHP Snippets Viewed : 22 times.
This function will fetch the real IP address of the user even if he is behind a proxy server. [code] function getRealIpAddr(){ if (!...
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