File indexing completed on 2024-12-15 03:45:05
0001 <?php 0002 /* 0003 SPDX-FileCopyrightText: 2017 Volker Krause <vkrause@kde.org> 0004 0005 SPDX-License-Identifier: MIT 0006 */ 0007 0008 /** Comaptibility functions for PHP 5.4 */ 0009 0010 if (PHP_VERSION_ID < 50500) { 0011 0012 if (!function_exists('boolval')) { 0013 function boolval( $my_value ) { 0014 return (bool)$my_value; 0015 } 0016 } 0017 0018 } 0019 0020 ?>