Файловый менеджер - Редактировать - /var/www/html/Literal.zip
Ðазад
PK ! `�+a a HTML.phpnu �[��� <?php namespace EasyRdf\Literal; /** * EasyRdf * * LICENSE * * Copyright (c) 2009-2014 Nicholas J Humfrey. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. The name of the author 'Nicholas J Humfrey" may be used to endorse or * promote products derived from this software without specific prior * written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * * @package EasyRdf * @copyright Copyright (c) 2009-2014 Nicholas J Humfrey * @license https://www.opensource.org/licenses/bsd-license.php */ use EasyRdf\Literal; /** * Class that represents an RDF Literal of datatype rdf:HTML * * @package EasyRdf * @link http://www.w3.org/TR/rdf11-concepts/#section-html * @copyright Copyright (c) 2009-2014 Nicholas J Humfrey * @license https://www.opensource.org/licenses/bsd-license.php */ class HTML extends Literal { /** Constructor for creating a new rdf:HTML literal * * @param mixed $value The HTML fragment * @param string $lang Should be null (literals with a datatype can't have a language) * @param string $datatype Optional datatype (default 'rdf:HTML') */ public function __construct($value, $lang = null, $datatype = null) { parent::__construct($value, null, $datatype); } /** Strip the HTML tags from the literal * * @link http://php.net/manual/en/function.strip-tags.php * @param string $allowableTags Optional allowed tag, not be be removed * * @return string The literal as plain text */ public function stripTags($allowableTags = null) { return strip_tags($this->value, $allowableTags); } } PK ! ��l� � Boolean.phpnu �[��� <?php namespace EasyRdf\Literal; /** * EasyRdf * * LICENSE * * Copyright (c) 2009-2014 Nicholas J Humfrey. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. The name of the author 'Nicholas J Humfrey" may be used to endorse or * promote products derived from this software without specific prior * written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * * @package EasyRdf * @copyright Copyright (c) 2009-2014 Nicholas J Humfrey * @license https://www.opensource.org/licenses/bsd-license.php */ use EasyRdf\Literal; /** * Class that represents an RDF Literal of datatype xsd:boolean * * @package EasyRdf * @link http://www.w3.org/TR/xmlschema-2/#boolean * @copyright Copyright (c) 2009-2014 Nicholas J Humfrey * @license https://www.opensource.org/licenses/bsd-license.php */ class Boolean extends Literal { /** Constructor for creating a new boolean literal * * If the value is not a string, then it will be converted to 'true' or 'false'. * * @param mixed $value The value of the literal * @param string $lang Should be null (literals with a datatype can't have a language) * @param string $datatype Optional datatype (default 'xsd:boolean') */ public function __construct($value, $lang = null, $datatype = null) { if (!is_string($value)) { $value = $value ? 'true' : 'false'; } parent::__construct($value, null, $datatype); } /** Return the value of the literal cast to a PHP bool * * If the value is 'true' or '1' return true, otherwise returns false. * * @return bool */ public function getValue() { return strtolower($this->value) === 'true' or $this->value === '1'; } /** Return true if the value of the literal is 'true' or '1' * * @return bool */ public function isTrue() { return strtolower($this->value) === 'true' or $this->value === '1'; } /** Return true if the value of the literal is 'false' or '0' * * @return bool */ public function isFalse() { return strtolower($this->value) === 'false' or $this->value === '0'; } } PK ! ��U�� � Decimal.phpnu �[��� <?php namespace EasyRdf\Literal; /** * EasyRdf * * LICENSE * * Copyright (c) 2009-2014 Nicholas J Humfrey. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. The name of the author 'Nicholas J Humfrey" may be used to endorse or * promote products derived from this software without specific prior * written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * * @package EasyRdf * @copyright Copyright (c) 2009-2014 Nicholas J Humfrey * @license https://www.opensource.org/licenses/bsd-license.php */ use EasyRdf\Literal; /** * Class that represents an RDF Literal of datatype xsd:decimal * * @package EasyRdf * @link http://www.w3.org/TR/xmlschema-2/#decimal * @copyright Copyright (c) 2009-2014 Nicholas J Humfrey * @license https://www.opensource.org/licenses/bsd-license.php */ class Decimal extends Literal { /** * written according to http://www.w3.org/TR/xmlschema-2/#decimal */ const DECIMAL_REGEX = '^([+\-]?)(((\d+)?\.(\d+))|((\d+)\.?))$'; /** Constructor for creating a new decimal literal * * @param double|int|string $value The value of the literal * @param string $lang Should be null (literals with a datatype can't have a language) * @param string $datatype Optional datatype (default 'xsd:decimal') * * @throws \UnexpectedValueException */ public function __construct($value, $lang = null, $datatype = null) { if (is_string($value)) { self::validate($value); } elseif (is_double($value) or is_int($value)) { $locale_data = localeconv(); $value = str_replace($locale_data['decimal_point'], '.', strval($value)); } else { throw new \UnexpectedValueException('EasyRdf\Literal\Decimal expects int/float/string as value'); } $value = self::canonicalise($value); parent::__construct($value, null, $datatype); } /** Return the value of the literal cast to a PHP string * * @return string */ public function getValue() { return strval($this->value); } /** * @param string $value * * @throws \UnexpectedValueException */ public static function validate($value) { if (!mb_ereg_match(self::DECIMAL_REGEX, $value)) { throw new \UnexpectedValueException("'{$value}' doesn't look like a valid decimal"); } } /** * Converts valid xsd:decimal literal to Canonical representation * see http://www.w3.org/TR/xmlschema-2/#decimal * * @param string $value Valid xsd:decimal literal * * @return string */ public static function canonicalise($value) { $pieces = array(); mb_ereg(self::DECIMAL_REGEX, $value, $pieces); $sign = $pieces[1] === '-' ? '-' : ''; // '+' is not allowed $integer = ltrim(($pieces[4] !== false) ? $pieces[4] : $pieces[7], '0'); $fractional = rtrim($pieces[5], '0'); if (empty($integer)) { $integer = '0'; } if (empty($fractional)) { $fractional = '0'; } return "{$sign}{$integer}.{$fractional}"; } } PK ! ��Iq� � HexBinary.phpnu �[��� <?php namespace EasyRdf\Literal; /** * EasyRdf * * LICENSE * * Copyright (c) 2009-2020 Nicholas J Humfrey. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. The name of the author 'Nicholas J Humfrey" may be used to endorse or * promote products derived from this software without specific prior * written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * * @package EasyRdf * @copyright Copyright (c) 2009-2020 Nicholas J Humfrey * @license https://www.opensource.org/licenses/bsd-license.php */ use EasyRdf\Literal; /** * Class that represents an RDF Literal of datatype xsd:hexBinary * * @package EasyRdf * @link http://www.w3.org/TR/xmlschema-2/#hexBinary * @copyright Copyright (c) 2009-2020 Nicholas J Humfrey * @license https://www.opensource.org/licenses/bsd-license.php */ class HexBinary extends Literal { /** Constructor for creating a new xsd:hexBinary literal * * @param mixed $value The value of the literal (already encoded as hexadecimal) * @param string $lang Should be null (literals with a datatype can't have a language) * @param string $datatype Optional datatype (default 'xsd:hexBinary') * * @throws \InvalidArgumentException */ public function __construct($value, $lang = null, $datatype = null) { // Normalise the canonical representation, as specified here: // http://www.w3.org/TR/xmlschema-2/#hexBinary-canonical-repr $value = strtoupper($value); // Validate the data if (preg_match('/[^A-F0-9]/', $value)) { throw new \InvalidArgumentException( "Literal of type xsd:hexBinary contains non-hexadecimal characters" ); } parent::__construct(strtoupper($value), null, 'xsd:hexBinary'); } /** Constructor for creating a new literal object from a binary blob * * @param string $binary The binary data * * @return self */ public static function fromBinary($binary) { return new self(bin2hex($binary)); } /** Decode the hexadecimal string into a binary blob * * @return string The binary blob */ public function toBinary() { return pack("H*", $this->value); } } PK ! �&� Date.phpnu �[��� <?php namespace EasyRdf\Literal; /** * EasyRdf * * LICENSE * * Copyright (c) 2009-2014 Nicholas J Humfrey. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. The name of the author 'Nicholas J Humfrey" may be used to endorse or * promote products derived from this software without specific prior * written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * * @package EasyRdf * @copyright Copyright (c) 2009-2014 Nicholas J Humfrey * @license https://www.opensource.org/licenses/bsd-license.php */ use EasyRdf\Literal; /** * Class that represents an RDF Literal of datatype xsd:date * * @package EasyRdf * @link http://www.w3.org/TR/xmlschema-2/#date * @copyright Copyright (c) 2009-2014 Nicholas J Humfrey * @license https://www.opensource.org/licenses/bsd-license.php */ class Date extends Literal { /** Constructor for creating a new date literal * * If the value is a DateTime object, then it will be converted to the xsd:date format. * If no value is given or is is null, then the current date is used. * * @see \DateTime * * @param mixed $value The value of the literal * @param string $lang Should be null (literals with a datatype can't have a language) * @param string $datatype Optional datatype (default 'xsd:date') */ public function __construct($value = null, $lang = null, $datatype = null) { // If $value is null, use today's date if (is_null($value)) { $value = new \DateTime('today'); } // Convert DateTime object into string if ($value instanceof \DateTime) { $value = $value->format('Y-m-d'); } parent::__construct($value, null, $datatype); } /** Parses a string using DateTime and creates a new literal * * Example: * $date = EasyRdf\Literal\Date::parse('1 January 2011'); * * @see DateTime * @param string $value The date to parse * * @return self */ public static function parse($value) { $value = new \DateTime($value); return new self($value); } /** Returns the date as a PHP DateTime object * * @see DateTime::format * @return string */ public function getValue() { return new \DateTime($this->value); } /** Returns date formatted according to given format * * @see DateTime::format * @param string $format * * @return string */ public function format($format) { return $this->getValue()->format($format); } /** A full integer representation of the year, 4 digits * * @return integer */ public function year() { return (int)$this->format('Y'); } /** Integer representation of the month * * @return integer */ public function month() { return (int)$this->format('m'); } /** Integer representation of the day of the month * * @return integer */ public function day() { return (int)$this->format('d'); } } PK ! ��3P� � Integer.phpnu �[��� <?php namespace EasyRdf\Literal; /** * EasyRdf * * LICENSE * * Copyright (c) 2009-2014 Nicholas J Humfrey. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. The name of the author 'Nicholas J Humfrey" may be used to endorse or * promote products derived from this software without specific prior * written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * * @package EasyRdf * @copyright Copyright (c) 2009-2014 Nicholas J Humfrey * @license https://www.opensource.org/licenses/bsd-license.php */ use EasyRdf\Literal; /** * Class that represents an RDF Literal of datatype xsd:integer * * @package EasyRdf * @link http://www.w3.org/TR/xmlschema-2/#integer * @copyright Copyright (c) 2009-2014 Nicholas J Humfrey * @license https://www.opensource.org/licenses/bsd-license.php */ class Integer extends Literal { /** Constructor for creating a new integer literal * * @param mixed $value The value of the literal * @param string $lang Should be null (literals with a datatype can't have a language) * @param string $datatype Optional datatype (default 'xsd:integer') */ public function __construct($value, $lang = null, $datatype = null) { parent::__construct($value, null, $datatype); } /** Return the value of the literal cast to a PHP int * * @return int */ public function getValue() { return (int)$this->value; } } PK ! IY�q� � DateTime.phpnu �[��� <?php namespace EasyRdf\Literal; /** * EasyRdf * * LICENSE * * Copyright (c) 2009-2014 Nicholas J Humfrey. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. The name of the author 'Nicholas J Humfrey" may be used to endorse or * promote products derived from this software without specific prior * written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * * @package EasyRdf * @copyright Copyright (c) 2009-2014 Nicholas J Humfrey * @license https://www.opensource.org/licenses/bsd-license.php */ use EasyRdf\Literal; /** * Class that represents an RDF Literal of datatype xsd:dateTime * * @package EasyRdf * @link http://www.w3.org/TR/xmlschema-2/#date * @copyright Copyright (c) 2009-2014 Nicholas J Humfrey * @license https://www.opensource.org/licenses/bsd-license.php */ class DateTime extends Date { /** Constructor for creating a new date and time literal * * If the value is a DateTime object, then it will be converted to the xsd:dateTime format. * If no value is given or is is null, then the current time is used. * * @see \DateTime * * @param mixed $value The value of the literal * @param string $lang Should be null (literals with a datatype can't have a language) * @param string $datatype Optional datatype (default 'xsd:dateTime') */ public function __construct($value = null, $lang = null, $datatype = null) { // If $value is null, use 'now' if (is_null($value)) { $value = new \DateTime('now'); } // Convert DateTime objects into string if ($value instanceof \DateTime) { $atom = $value->format(\DateTime::ATOM); $value = preg_replace('/[\+\-]00(\:?)00$/', 'Z', $atom); } Literal::__construct($value, null, $datatype); } /** Parses a string using DateTime and creates a new literal * * Example: * $dt = EasyRdf\Literal\DateTime::parse('Mon 18 Jul 2011 18:45:43 BST'); * * @see DateTime * @param string $value The date and time to parse * * @return self */ public static function parse($value) { $value = new \DateTime($value); return new self($value); } /** 24-hour format of the hour as an integer * * @return integer */ public function hour() { return (int)$this->format('H'); } /** The minutes pasts the hour as an integer * * @return integer */ public function min() { return (int)$this->format('i'); } /** The seconds pasts the minute as an integer * * @return integer */ public function sec() { return (int)$this->format('s'); } } PK ! �A%�; ; XML.phpnu �[��� <?php namespace EasyRdf\Literal; /** * EasyRdf * * LICENSE * * Copyright (c) 2009-2014 Nicholas J Humfrey. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. The name of the author 'Nicholas J Humfrey" may be used to endorse or * promote products derived from this software without specific prior * written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * * @package EasyRdf * @copyright Copyright (c) 2009-2014 Nicholas J Humfrey * @license https://www.opensource.org/licenses/bsd-license.php */ use EasyRdf\Literal; /** * Class that represents an RDF Literal of datatype rdf:XMLLiteral * * @package EasyRdf * @link http://www.w3.org/TR/REC-rdf-syntax/#section-Syntax-XML-literals * @copyright Copyright (c) 2009-2014 Nicholas J Humfrey * @license https://www.opensource.org/licenses/bsd-license.php */ class XML extends Literal { /** Constructor for creating a new rdf:XMLLiteral literal * * @param mixed $value The XML fragment * @param string $lang Should be null (literals with a datatype can't have a language) * @param string $datatype Optional datatype (default 'rdf:XMLLiteral') */ public function __construct($value, $lang = null, $datatype = null) { parent::__construct($value, null, $datatype); } /** Parse the XML literal into a DOMDocument * * @link http://php.net/manual/en/domdocument.loadxml.php * @return \DOMDocument */ public function domParse() { $dom = new \DOMDocument(); $dom->loadXML($this->value, LIBXML_PARSEHUGE); return $dom; } } PK ! `�+a a HTML.phpnu �[��� PK ! ��l� � � Boolean.phpnu �[��� PK ! ��U�� � T Decimal.phpnu �[��� PK ! ��Iq� � + HexBinary.phpnu �[��� PK ! �&� 9 Date.phpnu �[��� PK ! ��3P� � gJ Integer.phpnu �[��� PK ! IY�q� � 8U DateTime.phpnu �[��� PK ! �A%�; ; (e XML.phpnu �[��� PK Q �p
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка