It has the same syntax so it 's just renaming.
Code: Select all
array explode ( string $delimiter , string $string [, int $limit ] )
Code: Select all
array split ( string $pattern , string $string [, int $limit ] )
Code: Select all
array explode ( string $delimiter , string $string [, int $limit ] )
Code: Select all
array split ( string $pattern , string $string [, int $limit ] )
Code: Select all
LOAD DATA INFILE '/tmp/postcodes.csv' INTO TABLE i_city COLUMNS TERMINATED BY ';' ENCLOSED BY '"';
Code: Select all
mysql -u You -p database
Code: Select all
LOAD DATA INFILE 'data.csv' INTO TABLE table
Code: Select all
awk '{ print $2 }' list.txt
Code: Select all
awk -F ";" '{ print $2 }' list.txt
Code: Select all
$yesterday=date('Y-m-d', mktime(0, 0, 0, date("m") , date("d") - 1, date("Y")));
Code: Select all
$yesterday=date("Y-m-d", time()-86400);