PhpDig.net

What is PhpDig?
PhpDig is a PHP MySQL based
Web Spider & Search Engine.




hw_getobject

Name

hw_getobject — Returns the object records from one or more objects.

Synopsis

mixed hw_getobject(hw_link, object_id[, query]);
resource hw_link: Connection ID to Hyperwave server
mixed object_id: Object ID of the object to be examined, or an array of same
string query (optional): Search query (object query syntax)

Returns

Object record or array of object records on success; FALSE on failure

Description

hw_getobject() queries the server for the object record or records associated with one or more objects. If object_id is an integer and query is not given, the single record for the indicated object is returned as a string. Alternatively, object_id can be an array of object IDs, in which case an array of object records for the given objects is returned. When using this method, you can also provide a query , which allows you to set criteria to refine the list of returned records. hw_getobject() doesn't allow indexed attributes.

The search string syntax is that of an object query.

Version

PHP 3 since 3.0.3, PHP 4

Example

Example 488. Fetch object records

<?php
error_reporting(E_ALL);

if (!$hw_link = hw_connect('localhost', 418, 'hwsystem', 'hwsystem')) {
    echo "Could not connect to Hyperwave server.\n";
} else {
    echo "Successfully connected with resource id '$hw_link'\n";
}

/* Just grab whatever has ID #2. */
$ret = hw_getobject($hw_link, 2);
echo "Return type: " . gettype($ret) . ": '$ret'.\n";

/* Grab a list of the first five objects and see what's there. */
$ret = hw_getobject($hw_link, array(1, 2, 3, 4, 5));
echo "Return type: " . gettype($ret) . ": ";
print_r($ret);

/* Same thing, but only accept collection objects. */
$ret = hw_getobject($hw_link, array(1, 2, 3, 4, 5), 'DocumentType=collection');
echo "Return type: " . gettype($ret) . ": ";
print_r($ret);
?>



PHP Functions Essential Reference. Copyright © 2002 by New Riders Publishing (Authors: Zak Greant, Graeme Merrall, Torben Wilson, Brett Michlitsch). This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at http://www.opencontent.org/openpub/). The authors of this book have elected not to choose any options under the OPL. This online book was obtained from http://www.fooassociates.com/phpfer/ and is designed to provide information about the PHP programming language, focusing on PHP version 4.0.4 for the most part. The information is provided on an as-is basis, and no warranty or fitness is implied. All persons and entities shall have neither liability nor responsibility to any person or entity with respect to any loss or damage arising from the information contained in this book.

Powered by: vBulletin Version 3.0.7
Copyright ©2000 - 2005, Jelsoft Enterprises Ltd.
Copyright © 2001 - 2005, ThinkDing LLC. All Rights Reserved.