PageRenderTime 49ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/libraries/phpxmlrpc/compat/is_scalar.php

https://github.com/joebushi/joomla
PHP | 38 lines | 8 code | 3 blank | 27 comment | 4 complexity | eb6f2641df4b61f21491f8721c6af1d7 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
  1. <?php
  2. // +----------------------------------------------------------------------+
  3. // | PHP Version 4 |
  4. // +----------------------------------------------------------------------+
  5. // | Copyright (c) 1997-2004 The PHP Group |
  6. // +----------------------------------------------------------------------+
  7. // | This source file is subject to version 3.0 of the PHP license, |
  8. // | that is bundled with this package in the file LICENSE, and is |
  9. // | available at through the world-wide-web at |
  10. // | http://www.php.net/license/3_0.txt. |
  11. // | If you did not receive a copy of the PHP license and are unable to |
  12. // | obtain it through the world-wide-web, please send a note to |
  13. // | license@php.net so we can mail you a copy immediately. |
  14. // +----------------------------------------------------------------------+
  15. //
  16. // $Id$
  17. /**
  18. * Replace is_scalar()
  19. *
  20. * @category PHP
  21. * @package PHP_Compat
  22. * @link http://php.net/function.is_scalar
  23. * @author Gaetano Giunta
  24. * @version $Revision: 1.2 $
  25. * @since PHP 4.0.5
  26. * @require PHP 4 (is_bool)
  27. */
  28. if (!function_exists('is_scalar')) {
  29. function is_scalar($val)
  30. {
  31. // Check input
  32. return (is_bool($val) || is_int($val) || is_float($val) || is_string($val));
  33. }
  34. }
  35. ?>