CLI PHP5 – WordPress Blogger – if you use WordPress, gives you a tool to add blog entries from the command line. Be warned has some unique requirements;
Total lines of code < 100.
CLI PHP5 – WordPress Blogger – if you use WordPress, gives you a tool to add blog entries from the command line. Be warned has some unique requirements;
Total lines of code < 100.
{ 5 comments }
have updated the tool to use WordPress’s XML-RPC capability. Still uses readline (and now XML-RPC instead of cURL), but check out Andrew’s Windows work around
This works for Windows.
if(!function_exists('readline')) { //Win32
define('CMD_STDIN', fopen("php://stdin", "r+"));
define('CMD_STDOUT', fopen("php://stdout", "r+"));
function readline ($str=null) {
if ($str!=null) fwrite(CMD_STDOUT, $str);
return trim (fgets (CMD_STDIN, 255));
}
}
readline…. yeah the silent mode won’t use readline. Better fix that up!!
I’ll be fixing up some stuff this week. Making it more interactive in one mode… and also silent in another (to allow for use in pipes etc)
Might also mention that because of the readline requirement, it will not run on Windows
Comments on this entry are closed.