Skip to content

Tag: php

phpize Install xcache in mac os x 10.7.3,no such file directory

When I run phpsize,get the following error: I have installed xcode 4.3.2 Answer You need autoconf utility to complete the installation. You can install Homebrew and then do brew install autoconf in Terminal. After that repeat XCache installation. I prefer Homebrew because it’s easy to use and it puts al…

Javascript getTime to php date

I have javascript that turns dates in my view to a time string using getTime(). That then is stored as a value for an option in my select form. Once it is passed to php, how do I turn that into a php date? I have done: Answer You use PHP’s date() function: Updated, thanks Yoshi.