#!/bin/sh # Author: Athmane Madjoudj # Author: Christoph Galuschka t_Log "Running $0 - php test: looking for Zend Engine in phpinfo()." t_SkipReleaseGreaterThan 7 'use module-aware tests instead' FILE='/var/tmp/php-test.php' cat > $FILE < EOF # setting timezone for phpinfo sed -i 's/\;date\.timezone\ \=/date\.timezone = \"Europe\/Berlin\"/' /etc/php.ini php $FILE | grep -q 'Zend Engine' t_CheckExitStatus $? #reversing changes /bin/rm $FILE sed -i 's/\date\.timezone\ \=\ \"Europe\/Berlin\"/\;date\.timezone\ \=/' /etc/php.ini