Uses of Class
com.caucho.quercus.annotation.Optional

Packages that use Optional
com.caucho.quercus.lib   
com.caucho.quercus.lib.curl   
com.caucho.quercus.lib.date   
com.caucho.quercus.lib.db   
com.caucho.quercus.lib.dom   
com.caucho.quercus.lib.file   
com.caucho.quercus.lib.filter   
com.caucho.quercus.lib.gae   
com.caucho.quercus.lib.gettext   
com.caucho.quercus.lib.i18n   
com.caucho.quercus.lib.image   
com.caucho.quercus.lib.jms   
com.caucho.quercus.lib.json   
com.caucho.quercus.lib.mail   
com.caucho.quercus.lib.mcrypt   
com.caucho.quercus.lib.pdf   
com.caucho.quercus.lib.reflection   
com.caucho.quercus.lib.regexp   
com.caucho.quercus.lib.resin   
com.caucho.quercus.lib.session   
com.caucho.quercus.lib.simplexml   
com.caucho.quercus.lib.spl   
com.caucho.quercus.lib.string   
com.caucho.quercus.lib.xml   
com.caucho.quercus.lib.zip   
com.caucho.quercus.lib.zlib   
 

Uses of Optional in com.caucho.quercus.lib
 

Method parameters in com.caucho.quercus.lib with annotations of type Optional
static Value ExceptionClass.__construct(Env env, ObjectValue value, StringValue message, int code, Value previous)
          Create a new exception API object.
static Value ExceptionClass.__construct(Env env, ObjectValue value, StringValue message, int code, Value previous)
          Create a new exception API object.
static Value ExceptionClass.__construct(Env env, ObjectValue value, StringValue message, int code, Value previous)
          Create a new exception API object.
 boolean Memcache.addServer(Env env, java.lang.String host, int port, boolean persistent, int weight, int timeout, int retryInterval)
          Adds a server.
 boolean Memcache.addServer(Env env, java.lang.String host, int port, boolean persistent, int weight, int timeout, int retryInterval)
          Adds a server.
 boolean Memcache.addServer(Env env, java.lang.String host, int port, boolean persistent, int weight, int timeout, int retryInterval)
          Adds a server.
 boolean Memcache.addServer(Env env, java.lang.String host, int port, boolean persistent, int weight, int timeout, int retryInterval)
          Adds a server.
 boolean Memcache.addServer(Env env, java.lang.String host, int port, boolean persistent, int weight, int timeout, int retryInterval)
          Adds a server.
 java.lang.String ApacheModule.apache_note(Env env, java.lang.String name, Value value)
          Gets and sets apache notes
 Value ApcModule.apc_add(Env env, java.lang.String key, Value value, int ttl)
           
 Value ApcModule.apc_cache_info(Env env, java.lang.String type, boolean limited)
          Returns cache information.
 Value ApcModule.apc_cache_info(Env env, java.lang.String type, boolean limited)
          Returns cache information.
 boolean ApcModule.apc_clear_cache(Env env, java.lang.String type)
          Clears the cache
 boolean ApcModule.apc_define_constants(Env env, java.lang.String key, ArrayValue values, boolean caseSensitive)
          Defines constants
 Value ApcModule.apc_fetch(Env env, java.lang.String key, Value isSuccessful)
          Returns a value.
 boolean ApcModule.apc_load_constants(Env env, java.lang.String key, boolean caseSensitive)
          Defines constants
 Value ApcModule.apc_sma_info(Env env, java.lang.String type)
          Returns cache information.
 Value ApcModule.apc_store(Env env, java.lang.String key, Value value, int ttl)
          Returns a value.
static Value ArrayModule.array_change_key_case(Env env, ArrayValue array, int toCase)
          Changes the key case
static Value ArrayModule.array_chunk(Env env, ArrayValue array, int size, boolean preserveKeys)
          Chunks the array
static Value ArrayModule.array_filter(Env env, ArrayValue array, Value callbackName)
          Returns an array that filters out any values that do not hold true when used in the callback function.
static Value ArrayModule.array_keys(Env env, ArrayValue array, Value searchValue, boolean isStrict)
          Returns an array of the keys in the given array
static Value ArrayModule.array_keys(Env env, ArrayValue array, Value searchValue, boolean isStrict)
          Returns an array of the keys in the given array
static Value ArrayModule.array_rand(Env env, ArrayValue array, long num)
          Returns num sized array of random keys from the given array
static Value ArrayModule.array_reduce(Env env, ArrayValue array, Callable callable, Value initialValue)
          Returns the value of the array when its elements have been reduced using the callback function.
static Value ArrayModule.array_reverse(Env env, ArrayValue inputArray, boolean keyed)
          Returns the inputted array reversed, preserving the keys if keyed is true
static Value ArrayModule.array_search(Env env, Value needle, ArrayValue array, boolean strict)
          Returns the key of the needle being searched for or false if it's not found
static Value ArrayModule.array_slice(Env env, ArrayValue array, int offset, Value length, boolean isPreserveKeys)
          Returns a chunk of the array.
static Value ArrayModule.array_slice(Env env, ArrayValue array, int offset, Value length, boolean isPreserveKeys)
          Returns a chunk of the array.
static Value ArrayModule.array_splice(Env env, Value arrayVar, int offset, Value length, Value replace)
          Returns the removed chunk of the arrayV and splices in replace.
static Value ArrayModule.array_splice(Env env, Value arrayVar, int offset, Value length, Value replace)
          Returns the removed chunk of the arrayV and splices in replace.
static boolean ArrayModule.array_walk_recursive(Env env, Value arrayVar, Callable callback, Value extra)
          Recursively executes a callback function on all elements in the array, including elements of elements (i.e., arrays within arrays).
static boolean ArrayModule.array_walk(Env env, Value arrayVar, Callable callback, Value userData)
          Executes a callback on each of the elements in the array.
static boolean ArrayModule.arsort(Env env, Value arrayVar, long sortFlag)
          Sorts the array based on values in reverse order, preserving keys
static boolean ArrayModule.asort(Env env, Value arrayVar, long sortFlag)
          Sorts the array based on values in ascending order, preserving keys
static Value OptionsModule.assert_options(Env env, int code, Value value)
          Checks the assertion
static Value UrlModule.base64_decode(Env env, StringValue str, boolean isStrict)
          Decodes base64
static java.lang.String BcmathModule.bcadd(Env env, Value value1, Value value2, int scale)
          Add two arbitrary precision numbers.
static int BcmathModule.bccomp(Env env, Value value1, Value value2, int scale)
          Compare two arbitrary precision numbers, return -1 if value 1 < value2, 0 if value1 == value2, 1 if value1 > value2.
static java.lang.String BcmathModule.bcdiv(Env env, Value value1, Value value2, int scale)
          Divide one arbitrary precision number (value1) by another (value2).
static java.lang.String BcmathModule.bcmul(Env env, Value value1, Value value2, int scale)
          Multiply two arbitrary precision numbers.
static java.lang.String BcmathModule.bcpow(Env env, Value base, Value exp, int scale)
          Raise one arbitrary precision number (base) to the power of another (exp).
static java.lang.String BcmathModule.bcpowmod(Env env, java.math.BigDecimal base, java.math.BigDecimal exp, java.math.BigDecimal modulus, int scale)
          Raise one arbitrary precision number (base) to the power of another (exp), and then return the modulus.
static java.lang.String BcmathModule.bcsqrt(Env env, Value operand, int scale)
          Return the square root of an arbitrary precision number.
static java.lang.String BcmathModule.bcsub(Env env, Value value1, Value value2, int scale)
          Subtract arbitrary precision number (value2) from another (value1).
static boolean NetworkModule.checkdnsrr(Env env, java.lang.String hostname, java.lang.String type)
           
static boolean ClassesModule.class_exists(Env env, java.lang.String className, boolean useAutoload)
          returns true if the class exists.
 boolean Memcache.connect(Env env, java.lang.String host, int port, int timeout)
          Connect to a server.
 boolean Memcache.connect(Env env, java.lang.String host, int port, int timeout)
          Connect to a server.
static long ArrayModule.count(Env env, Value value, int countMethod)
          Returns the size of the array.
static ArrayValue ErrorModule.debug_backtrace(Env env, int options)
          Produces a backtrace
static Value VariableModule.define(Env env, StringValue name, Value value, boolean isCaseInsensitive)
          Defines a constant
 boolean Memcache.delete(Env env, java.lang.String key, int timeout)
           
static Value ErrorModule.die(Env env, java.lang.String msg)
          Exits
static boolean NetworkModule.dns_check_record(Env env, java.lang.String hostname, java.lang.String type)
          Finds the mx hosts for the given hostname, placing them in mxhosts and their corresponding weights in weight, if provided.
static boolean NetworkModule.dns_get_mx(Env env, java.lang.String hostname, Value mxhosts, Value weight)
          Finds the mx hosts for the given hostname, placing them in mxhosts and their corresponding weights in weight, if provided.
 ArrayValue NetworkModule.dns_get_record(Env env, java.lang.String hostname, int type, Value authnsRef, Value addtlRef)
           
 ArrayValue NetworkModule.dns_get_record(Env env, java.lang.String hostname, int type, Value authnsRef, Value addtlRef)
           
 ArrayValue NetworkModule.dns_get_record(Env env, java.lang.String hostname, int type, Value authnsRef, Value addtlRef)
           
static boolean ErrorModule.error_log(Env env, StringValue message, int type, StringValue destination, StringValue extraHeaders)
          Send a message to the log.
static boolean ErrorModule.error_log(Env env, StringValue message, int type, StringValue destination, StringValue extraHeaders)
          Send a message to the log.
static boolean ErrorModule.error_log(Env env, StringValue message, int type, StringValue destination, StringValue extraHeaders)
          Send a message to the log.
static long ErrorModule.error_reporting(Env env, Value levelV)
          Changes the error reporting value.
static java.lang.String MiscModule.exec(Env env, java.lang.String command, Value output, Value result)
          Execute a system command.
static java.lang.String MiscModule.exec(Env env, java.lang.String command, Value output, Value result)
          Execute a system command.
static Value ExifModule.exif_read_data(Env env, Path file, java.lang.String sections, boolean arrays, boolean thumbs)
          Reads the EXIF headers from JPEG or TIFF
static Value ExifModule.exif_read_data(Env env, Path file, java.lang.String sections, boolean arrays, boolean thumbs)
          Reads the EXIF headers from JPEG or TIFF
static Value ExifModule.exif_read_data(Env env, Path file, java.lang.String sections, boolean arrays, boolean thumbs)
          Reads the EXIF headers from JPEG or TIFF
static Value ExifModule.exif_thumbnail(Env env, Path file, int width, int height, int imageType)
          Retrieve the embedded thumbnail of a TIFF or JPEG image
static Value ExifModule.exif_thumbnail(Env env, Path file, int width, int height, int imageType)
          Retrieve the embedded thumbnail of a TIFF or JPEG image
static Value ExifModule.exif_thumbnail(Env env, Path file, int width, int height, int imageType)
          Retrieve the embedded thumbnail of a TIFF or JPEG image
 Value ErrorModule.exit(Env env, Value msg)
          Exits
static Value ArrayModule.extract(Env env, ArrayValue array, long rawType, Value valuePrefix)
          Inputs new variables into the symbol table from the passed array
static SocketInputOutput NetworkModule.fsockopen(Env env, java.lang.String host, int port, Value errno, Value errstr, double timeout)
          Opens a socket
static SocketInputOutput NetworkModule.fsockopen(Env env, java.lang.String host, int port, Value errno, Value errstr, double timeout)
          Opens a socket
static SocketInputOutput NetworkModule.fsockopen(Env env, java.lang.String host, int port, Value errno, Value errstr, double timeout)
          Opens a socket
static SocketInputOutput NetworkModule.fsockopen(Env env, java.lang.String host, int port, Value errno, Value errstr, double timeout)
          Opens a socket
static Value MiscModule.get_browser(Env env, java.lang.String user_agent, boolean return_array)
          Returns an array detailing what the browser is capable of.
static Value MiscModule.get_browser(Env env, java.lang.String user_agent, boolean return_array)
          Returns an array detailing what the browser is capable of.
static Value UrlModule.get_headers(Env env, java.lang.String urlString, Value format)
          Connects to the given URL using a HEAD request to retreive the headers sent in the response.
 Value HtmlModule.get_html_translation_table(Env env, int table, int quoteStyle)
          Returns HTML translation tables.
 Value HtmlModule.get_html_translation_table(Env env, int table, int quoteStyle)
          Returns HTML translation tables.
static Value UrlModule.get_meta_tags(Env env, StringValue filename, boolean useIncludePath)
          Extracts the meta tags from a file and returns them as an array.
static boolean NetworkModule.getmxrr(Env env, java.lang.String hostname, Value mxhosts, Value weight)
           
static Value OptionsModule.getrusage(Env env, int who)
          Stub value for getrusage.
 Value HashModule.hash_file(Env env, java.lang.String algorithm, Path path, boolean isBinary)
          Hashes a file
 Value HashModule.hash_final(Env env, HashModule.HashContext context, boolean isBinary)
          Returns the final hash value
 Value HashModule.hash_hmac_file(Env env, java.lang.String algorithm, Path path, StringValue key, boolean isBinary)
          Hashes a file with the algorithm.
 Value HashModule.hash_hmac(Env env, java.lang.String algorithm, StringValue data, StringValue key, boolean isBinary)
          Hashes a string with the algorithm.
 HashModule.HashContext HashModule.hash_init(Env env, java.lang.String algorithm, int options, StringValue keyString)
          Initialize a hash context.
 HashModule.HashContext HashModule.hash_init(Env env, java.lang.String algorithm, int options, StringValue keyString)
          Initialize a hash context.
 int HashModule.hash_update_stream(Env env, HashModule.HashContext context, java.io.InputStream is, int length)
          Updates the hash with more data
 Value HashModule.hash(Env env, java.lang.String algorithm, StringValue string, boolean isBinary)
          Hashes a string
static Value HttpModule.header(Env env, StringValue headerStr, boolean replace, long httpResponseCode)
          Adds a header.
static Value HttpModule.header(Env env, StringValue headerStr, boolean replace, long httpResponseCode)
          Adds a header.
static boolean HttpModule.headers_sent(Env env, Value file, Value line)
          Return true if the headers have been sent.
static boolean HttpModule.headers_sent(Env env, Value file, Value line)
          Return true if the headers have been sent.
static Value TokenModule.highlight_file(Env env, StringValue filename, boolean isReturn)
           
static Value TokenModule.highlight_string(Env env, StringValue s, boolean isReturn)
           
static StringValue HtmlModule.html_entity_decode(Env env, StringValue string, int quoteStyle, java.lang.String charset)
          Escapes HTML
static StringValue HtmlModule.html_entity_decode(Env env, StringValue string, int quoteStyle, java.lang.String charset)
          Escapes HTML
static Value HtmlModule.htmlentities(Env env, StringValue string, int quoteStyle, java.lang.String charset)
          Escapes HTML
static Value HtmlModule.htmlentities(Env env, StringValue string, int quoteStyle, java.lang.String charset)
          Escapes HTML
static StringValue HtmlModule.htmlspecialchars_decode(Env env, StringValue str, int quoteStyle)
          Converts escaped HTML entities back to characters.
static Value HtmlModule.htmlspecialchars(Env env, StringValue string, int quoteStyle, java.lang.String charset, boolean isDoubleEncode)
          Escapes HTML
static Value HtmlModule.htmlspecialchars(Env env, StringValue string, int quoteStyle, java.lang.String charset, boolean isDoubleEncode)
          Escapes HTML
static Value HtmlModule.htmlspecialchars(Env env, StringValue string, int quoteStyle, java.lang.String charset, boolean isDoubleEncode)
          Escapes HTML
static Value UrlModule.http_build_query(Env env, Value obj, Value formdata, StringValue numeric_prefix, StringValue separator)
           
static Value UrlModule.http_build_query(Env env, Value obj, Value formdata, StringValue numeric_prefix, StringValue separator)
           
static int MiscModule.ignore_user_abort(boolean set)
          Returns the disconnect ignore setting
static boolean VariableModule.import_request_variables(Env env, java.lang.String types, java.lang.String prefix)
          Imports request variables
static boolean ArrayModule.in_array(Value needle, ArrayValue stack, boolean strict)
          Determines if the key is in the array
static Value OptionsModule.ini_get_all(Env env, java.lang.String extension)
          Returns all initialization values.
 boolean ClassesModule.interface_exists(Env env, java.lang.String interfaceName, boolean useAutoload)
          Returns true if the class exists.
static boolean VariableModule.is_callable(Env env, Value v, boolean isCheckSyntaxOnly, Value nameRef)
          Returns the type string for the variable
static boolean VariableModule.is_callable(Env env, Value v, boolean isCheckSyntaxOnly, Value nameRef)
          Returns the type string for the variable
static boolean ArrayModule.krsort(Env env, Value arrayVar, long sortFlag)
          Sorts the array based on keys in reverse order, preserving keys
static boolean ArrayModule.ksort(Env env, Value arrayVar, long sortFlag)
          Sorts the array based on keys in ascending order, preserving keys
static Value OptionsModule.memory_get_peak_usage(Env env, boolean real)
          Stub value for memory get usage.
static Value OptionsModule.memory_get_usage(Env env, boolean real)
          Stub value for memory get usage.
 Value MhashModule.mhash(Env env, int hash, StringValue data, java.lang.String key)
           
static long MathModule.mt_rand(long min, long max)
           
static long MathModule.mt_rand(long min, long max)
           
static Value MathModule.mt_srand(long seed)
           
static Value OutputModule.ob_get_status(Env env, boolean full_status)
          Gets the status of the current output buffer(s)
static Value OutputModule.ob_implicit_flush(Env env, boolean flag)
          Makes the original "output buffer" flush on every write.
static boolean OutputModule.ob_start(Env env, Callable callback, int chunkSize, boolean erase)
          Pushes the output buffer
static boolean OutputModule.ob_start(Env env, Callable callback, int chunkSize, boolean erase)
          Pushes the output buffer
static boolean OutputModule.ob_start(Env env, Callable callback, int chunkSize, boolean erase)
          Pushes the output buffer
static Value UrlModule.parse_url(Env env, StringValue str, int component)
          Parses the URL into an array.
static void MiscModule.passthru(Env env, java.lang.String command, Value result)
          Execute a system command.
 boolean Memcache.pconnect(Env env, java.lang.String host, int port, int timeout)
          Connect to a server.
 boolean Memcache.pconnect(Env env, java.lang.String host, int port, int timeout)
          Connect to a server.
static java.lang.String OptionsModule.php_uname(java.lang.String mode)
          Returns system information
static void OptionsModule.phpinfo(Env env, int what)
           
static java.lang.String OptionsModule.phpversion(Env env, StringValue module)
          Returns the quercus version.
static Value VariableModule.print_r(Env env, Value v, boolean isReturn)
          Prints a value.
static ProcOpenResource MiscModule.proc_open(Env env, java.lang.String command, ArrayValue descriptorArray, Value pipes, Path pwd, ArrayValue envArray, ArrayValue options)
          Basic implementation of proc_open.
static ProcOpenResource MiscModule.proc_open(Env env, java.lang.String command, ArrayValue descriptorArray, Value pipes, Path pwd, ArrayValue envArray, ArrayValue options)
          Basic implementation of proc_open.
static ProcOpenResource MiscModule.proc_open(Env env, java.lang.String command, ArrayValue descriptorArray, Value pipes, Path pwd, ArrayValue envArray, ArrayValue options)
          Basic implementation of proc_open.
static long MathModule.rand(int min, int max)
           
static long MathModule.rand(int min, int max)
           
static Value ArrayModule.range(Env env, Value start, Value end, long step)
          Creates an array using the start and end values provided
static Value ExifModule.read_exif_data(Env env, Path file, java.lang.String sections, boolean arrays, boolean thumbs)
          Alias of exif_read_data()
static Value ExifModule.read_exif_data(Env env, Path file, java.lang.String sections, boolean arrays, boolean thumbs)
          Alias of exif_read_data()
static Value ExifModule.read_exif_data(Env env, Path file, java.lang.String sections, boolean arrays, boolean thumbs)
          Alias of exif_read_data()
static Value ResinModule.resin_string_to_binary(Env env, java.lang.String string, java.lang.String encoding)
          Converts a string into its binary representation, according to the given encoding, if given, or the script encoding if not given.
static double MathModule.round(double value, int precision)
           
static boolean ArrayModule.rsort(Env env, Value arrayVar, long sortFlag)
          Sorts the array based on values in reverse order
static boolean ErrorModule.set_error_handler(Env env, Callable fun, int errorMask)
          Sets an error handler
 boolean Memcache.set(Env env, java.lang.String key, Value value, int flag, int expire)
          Sets a value.
 boolean Memcache.set(Env env, java.lang.String key, Value value, int flag, int expire)
          Sets a value.
 boolean Memcache.setCompressThreshold(int threshold, double minSavings)
          Sets the compression threshold
static boolean HttpModule.setcookie(Env env, java.lang.String name, java.lang.String value, long expire, java.lang.String path, java.lang.String domain, boolean secure, boolean httpOnly)
          Sets a cookie
static boolean HttpModule.setcookie(Env env, java.lang.String name, java.lang.String value, long expire, java.lang.String path, java.lang.String domain, boolean secure, boolean httpOnly)
          Sets a cookie
static boolean HttpModule.setcookie(Env env, java.lang.String name, java.lang.String value, long expire, java.lang.String path, java.lang.String domain, boolean secure, boolean httpOnly)
          Sets a cookie
static boolean HttpModule.setcookie(Env env, java.lang.String name, java.lang.String value, long expire, java.lang.String path, java.lang.String domain, boolean secure, boolean httpOnly)
          Sets a cookie
static boolean HttpModule.setcookie(Env env, java.lang.String name, java.lang.String value, long expire, java.lang.String path, java.lang.String domain, boolean secure, boolean httpOnly)
          Sets a cookie
static boolean HttpModule.setcookie(Env env, java.lang.String name, java.lang.String value, long expire, java.lang.String path, java.lang.String domain, boolean secure, boolean httpOnly)
          Sets a cookie
static long ArrayModule.sizeof(Env env, Value value, int countMethod)
          Returns the size of the array.
static boolean ArrayModule.sort(Env env, Value arrayVar, long sortFlag)
          Sorts the array based on values in ascending order
static Value MathModule.srand(long seed)
           
static java.lang.String MiscModule.system(Env env, java.lang.String command, Value result)
          Execute a system command.
static Value ErrorModule.trigger_error(Env env, java.lang.String msg, int code)
          Triggers an error.
static boolean ArrayModule.uasort(Env env, Value arrayVar, Callable func, long sortFlag)
          Sorts the array based on values in ascending order using a callback function
static boolean ArrayModule.uksort(Env env, Value arrayVar, Callable func, long sortFlag)
          Sorts the array based on values in ascending order using a callback function
 java.lang.String MiscModule.uniqid(java.lang.String prefix, boolean moreEntropy)
          Returns a unique id.
 java.lang.String MiscModule.uniqid(java.lang.String prefix, boolean moreEntropy)
          Returns a unique id.
 Value ErrorModule.user_error(Env env, java.lang.String msg, int code)
          Triggers an error.
static boolean ArrayModule.usort(Env env, Value arrayVar, Callable func, long sortFlag)
          Sorts the array based on values in ascending order using a callback function
static Value VariableModule.var_export(Env env, Value v, boolean isReturn)
          Serializes the value to a string.
static Value OptionsModule.version_compare(Env env, StringValue version1, StringValue version2, java.lang.String op)
          Compares versions
 

Uses of Optional in com.caucho.quercus.lib.curl
 

Method parameters in com.caucho.quercus.lib.curl with annotations of type Optional
static Value CurlModule.curl_getinfo(Env env, CurlResource curl, Value option)
          Returns information about the last request.
static CurlResource CurlModule.curl_init(Env env, java.lang.String url)
          Returns a cURL handle.
static LongValue CurlModule.curl_multi_select(Env env, Value curls, Value timeout)
          XXX: not documented by PHP
static ArrayValue CurlModule.curl_version(Env env, Value age)
          Returns the version of this cURL implementation.
 

Uses of Optional in com.caucho.quercus.lib.date
 

Method parameters in com.caucho.quercus.lib.date with annotations of type Optional
static DateTime DateTime.__construct(Env env, Value time, DateTimeZone timeZone)
           
static DateTime DateTime.__construct(Env env, Value time, DateTimeZone timeZone)
           
static DateTime DateModule.date_create(Env env, Value time, DateTimeZone dateTimeZone)
           
static DateTime DateModule.date_create(Env env, Value time, DateTimeZone dateTimeZone)
           
static Value DateModule.date_sunrise(int timestamp, int format, double latitude, double longitude, double zenith, double gmtOffset)
           
static Value DateModule.date_sunrise(int timestamp, int format, double latitude, double longitude, double zenith, double gmtOffset)
           
static Value DateModule.date_sunrise(int timestamp, int format, double latitude, double longitude, double zenith, double gmtOffset)
           
static Value DateModule.date_sunrise(int timestamp, int format, double latitude, double longitude, double zenith, double gmtOffset)
           
static Value DateModule.date_sunrise(int timestamp, int format, double latitude, double longitude, double zenith, double gmtOffset)
           
static Value DateModule.date_sunset(int timestamp, int format, double latitude, double longitude, double zenith, double gmtOffset)
           
static Value DateModule.date_sunset(int timestamp, int format, double latitude, double longitude, double zenith, double gmtOffset)
           
static Value DateModule.date_sunset(int timestamp, int format, double latitude, double longitude, double zenith, double gmtOffset)
           
static Value DateModule.date_sunset(int timestamp, int format, double latitude, double longitude, double zenith, double gmtOffset)
           
static Value DateModule.date_sunset(int timestamp, int format, double latitude, double longitude, double zenith, double gmtOffset)
           
static void DateModule.date_time_set(DateTime dateTime, int hour, int minute, int second)
           
 StringValue DateModule.date(Env env, StringValue format, long time)
          Returns the formatted date.
 DateInterval DateTime.diff(Env env, DateTime dateTime, boolean isAbsolute)
           
static long DateModule.easter_date(Env env, int year)
          Returns the timestamp of easter.
static long DateModule.easter_days(Env env, int year, int method)
          Returns the timestamp of easter.
static long DateModule.easter_days(Env env, int year, int method)
          Returns the timestamp of easter.
 Value DateModule.getdate(Env env, Value timeV)
          Returns an array of the current date.
 Value DateModule.gettimeofday(Env env, boolean isFloatReturn)
           
 StringValue DateModule.gmdate(Env env, StringValue format, long time)
          Returns the formatted date.
 long DateModule.gmmktime(Env env, Value hourV, Value minuteV, Value secondV, Value monthV, Value dayV, Value yearV)
          Returns the formatted date.
 long DateModule.gmmktime(Env env, Value hourV, Value minuteV, Value secondV, Value monthV, Value dayV, Value yearV)
          Returns the formatted date.
 long DateModule.gmmktime(Env env, Value hourV, Value minuteV, Value secondV, Value monthV, Value dayV, Value yearV)
          Returns the formatted date.
 long DateModule.gmmktime(Env env, Value hourV, Value minuteV, Value secondV, Value monthV, Value dayV, Value yearV)
          Returns the formatted date.
 long DateModule.gmmktime(Env env, Value hourV, Value minuteV, Value secondV, Value monthV, Value dayV, Value yearV)
          Returns the formatted date.
 long DateModule.gmmktime(Env env, Value hourV, Value minuteV, Value secondV, Value monthV, Value dayV, Value yearV)
          Returns the formatted date.
 java.lang.String DateModule.gmstrftime(Env env, java.lang.String format, long phpTime)
          Returns the formatted date.
 Value DateModule.idate(Env env, StringValue format, long time)
          Returns the formatted date as an int.
 ArrayValue DateModule.localtime(Env env, long time, boolean isAssociative)
          Returns the time as an indexed or associative array
 ArrayValue DateModule.localtime(Env env, long time, boolean isAssociative)
          Returns the time as an indexed or associative array
static Value DateModule.microtime(Env env, boolean getAsFloat)
          Returns the time including microseconds
 long DateModule.mktime(Env env, Value hourV, Value minuteV, Value secondV, Value monthV, Value dayV, Value yearV, int isDST)
          Returns the formatted date.
 long DateModule.mktime(Env env, Value hourV, Value minuteV, Value secondV, Value monthV, Value dayV, Value yearV, int isDST)
          Returns the formatted date.
 long DateModule.mktime(Env env, Value hourV, Value minuteV, Value secondV, Value monthV, Value dayV, Value yearV, int isDST)
          Returns the formatted date.
 long DateModule.mktime(Env env, Value hourV, Value minuteV, Value secondV, Value monthV, Value dayV, Value yearV, int isDST)
          Returns the formatted date.
 long DateModule.mktime(Env env, Value hourV, Value minuteV, Value secondV, Value monthV, Value dayV, Value yearV, int isDST)
          Returns the formatted date.
 long DateModule.mktime(Env env, Value hourV, Value minuteV, Value secondV, Value monthV, Value dayV, Value yearV, int isDST)
          Returns the formatted date.
 long DateModule.mktime(Env env, Value hourV, Value minuteV, Value secondV, Value monthV, Value dayV, Value yearV, int isDST)
          Returns the formatted date.
 void DateTime.setISODate(int year, int week, int day)
           
 void DateTime.setTime(int hour, int minute, int second)
           
static java.lang.String DateModule.strftime(Env env, java.lang.String format, long phpTime)
          Returns the formatted date.
static Value DateModule.strtotime(Env env, java.lang.String timeString, long now)
          Parses the time
static Value DateModule.timezone_name_from_abbr(StringValue abbr, int gmtOffset, boolean isDST)
           
static Value DateModule.timezone_name_from_abbr(StringValue abbr, int gmtOffset, boolean isDST)
           
 

Uses of Optional in com.caucho.quercus.lib.db
 

Method parameters in com.caucho.quercus.lib.db with annotations of type Optional
 boolean PDOStatement.bindColumn(Env env, Value column, Value var, int type)
           
 boolean PDOStatement.bindParam(Env env, Value parameter, Value value, int dataType, int length, Value driverOptions)
           
 boolean PDOStatement.bindParam(Env env, Value parameter, Value value, int dataType, int length, Value driverOptions)
           
 boolean PDOStatement.bindParam(Env env, Value parameter, Value value, int dataType, int length, Value driverOptions)
           
 boolean PDOStatement.bindValue(Env env, Value parameter, Value value, int dataType)
           
 LongValue OracleOciLob.erase(Env env, long offset, long length)
          Erases a specified portion of the internal LOB data
 LongValue OracleOciLob.erase(Env env, long offset, long length)
          Erases a specified portion of the internal LOB data
 boolean PDOStatement.execute(Env env, Value inputParameters)
          Execute the statement.
 boolean OracleOciLob.export(Env env, Path file, long start, long length)
          Exports LOB's contents to a file
 boolean OracleOciLob.export(Env env, Path file, long start, long length)
          Exports LOB's contents to a file
 Value MysqliResult.fetch_array(Env env, int type)
          Fetch a result row as an associative, a numeric array, or both.
 Value MysqliResult.fetch_object(Env env, java.lang.String className, Value[] args)
          Returns an object representing the current row.
 Value MysqliResult.fetch_object(Env env, java.lang.String className, Value[] args)
          Returns an object representing the current row.
 Value PDOStatement.fetch(Env env, int fetchMode, int cursorOrientation, int cursorOffset)
          Fetch the next row.
 Value PDOStatement.fetch(Env env, int fetchMode, int cursorOrientation, int cursorOffset)
          Fetch the next row.
 Value PDOStatement.fetch(Env env, int fetchMode, int cursorOrientation, int cursorOffset)
          Fetch the next row.
 Value PDOStatement.fetchAll(Env env, int fetchMode, int columnIndex)
           
 Value PDOStatement.fetchAll(Env env, int fetchMode, int columnIndex)
           
 Value PDOStatement.fetchColumn(Env env, int column)
           
 Value PDOStatement.fetchObject(Env env, java.lang.String className, Value[] args)
           
 Value PDOStatement.fetchObject(Env env, java.lang.String className, Value[] args)
           
 boolean OracleOciLob.flush(Env env, int flag)
          Flushes/writes buffer of the LOB to the server
 java.lang.String PDO.lastInsertId(Env env, Value nameV)
           
static int MysqlModule.mysql_affected_rows(Env env, Mysqli conn)
          Returns the number of affected rows.
static boolean MysqlModule.mysql_change_user(Env env, StringValue user, StringValue pass, StringValue database, Mysqli conn)
          Change the logged in user of the current active connection.
static boolean MysqlModule.mysql_change_user(Env env, StringValue user, StringValue pass, StringValue database, Mysqli conn)
          Change the logged in user of the current active connection.
static StringValue MysqlModule.mysql_client_encoding(Env env, Mysqli conn)
          Returns the client encoding
static boolean MysqlModule.mysql_close(Env env, Mysqli conn)
          Closes a mysql connection.
static Value MysqlModule.mysql_connect(Env env, StringValue host, StringValue userName, StringValue password, boolean isNewLink, int flags)
          Returns a new mysql connection.
static Value MysqlModule.mysql_connect(Env env, StringValue host, StringValue userName, StringValue password, boolean isNewLink, int flags)
          Returns a new mysql connection.
static Value MysqlModule.mysql_connect(Env env, StringValue host, StringValue userName, StringValue password, boolean isNewLink, int flags)
          Returns a new mysql connection.
static Value MysqlModule.mysql_connect(Env env, StringValue host, StringValue userName, StringValue password, boolean isNewLink, int flags)
          Returns a new mysql connection.
static Value MysqlModule.mysql_connect(Env env, StringValue host, StringValue userName, StringValue password, boolean isNewLink, int flags)
          Returns a new mysql connection.
static boolean MysqlModule.mysql_create_db(Env env, StringValue name, Mysqli conn)
          Creates a database.
static Value MysqlModule.mysql_db_name(Env env, MysqliResult result, int row, Value field)
          Retrieves the database name after a call to mysql_list_dbs()
static Value MysqlModule.mysql_db_query(Env env, java.lang.String databaseName, StringValue query, Mysqli conn)
          Returns result set or false on error
static boolean MysqlModule.mysql_drop_db(Env env, StringValue databaseName, Mysqli conn)
          Drops a database.
static boolean MysqlModule.mysql_dropdb(Env env, StringValue databaseName, Mysqli conn)
          Deprecated alias for mysql_drop_db.
static int MysqlModule.mysql_errno(Env env, Mysqli conn)
          Returns the error number of the most recent error
static StringValue MysqlModule.mysql_error(Env env, Mysqli conn)
          Returns the most recent error.
static Value MysqlModule.mysql_fetch_array(Env env, MysqliResult result, int type)
          Returns a row from the connection
static Value MysqlModule.mysql_fetch_field(Env env, MysqliResult result, int fieldOffset)
          Returns an object containing field information.
static Value MysqlModule.mysql_fetch_object(Env env, MysqliResult result, java.lang.String className, Value[] args)
          Returns an object with properties that correspond to the fetched row and moves the data pointer ahead.
static Value MysqlModule.mysql_fetch_object(Env env, MysqliResult result, java.lang.String className, Value[] args)
          Returns an object with properties that correspond to the fetched row and moves the data pointer ahead.
static Value MysqlModule.mysql_field_len(Env env, MysqliResult result, int fieldOffset)
          Returns the length of the specified field
static StringValue MysqlModule.mysql_get_host_info(Env env, Mysqli conn)
          Returns a string describing the host.
static int MysqlModule.mysql_get_proto_info(Env env, Mysqli conn)
          Returns an integer respresenting the MySQL protocol version.
static Value MysqlModule.mysql_get_server_info(Env env, Mysqli conn)
          Returns the MySQL server version.
static Value MysqlModule.mysql_info(Env env, Mysqli conn)
          Get information about the most recent query.
static Value MysqlModule.mysql_insert_id(Env env, Mysqli conn)
          returns ID generated for an AUTO_INCREMENT column by the previous INSERT query on success, 0 if the previous query does not generate an AUTO_INCREMENT value, or FALSE if no MySQL connection was established
static Value MysqlModule.mysql_list_dbs(Env env, Mysqli conn)
          Returns a result pointer containing the databases available from the current mysql daemon.
static Value MysqlModule.mysql_list_fields(Env env, java.lang.String database, StringValue tableName, Mysqli conn)
          Retrieves information about the given table name.
static java.lang.Object MysqlModule.mysql_list_tables(Env env, StringValue databaseName, Mysqli conn)
          Retrieves a list of table names from a MySQL database.
static Value MysqlModule.mysql_listfields(Env env, java.lang.String databaseName, StringValue tableName, Mysqli conn)
          Deprecated alias for mysql_list_fields
static Value MysqlModule.mysql_pconnect(Env env, StringValue server, StringValue user, StringValue password, boolean newLink, int flags)
          Returns a new persistent mysql connection.
static Value MysqlModule.mysql_pconnect(Env env, StringValue server, StringValue user, StringValue password, boolean newLink, int flags)
          Returns a new persistent mysql connection.
static Value MysqlModule.mysql_pconnect(Env env, StringValue server, StringValue user, StringValue password, boolean newLink, int flags)
          Returns a new persistent mysql connection.
static Value MysqlModule.mysql_pconnect(Env env, StringValue server, StringValue user, StringValue password, boolean newLink, int flags)
          Returns a new persistent mysql connection.
static Value MysqlModule.mysql_pconnect(Env env, StringValue server, StringValue user, StringValue password, boolean newLink, int flags)
          Returns a new persistent mysql connection.
static boolean MysqlModule.mysql_ping(Env env, Mysqli conn)
          Checks if the connection is still valid.
static Value MysqlModule.mysql_query(Env env, StringValue sql, Mysqli conn)
          Executes a query and returns a result set.
static StringValue MysqlModule.mysql_real_escape_string(Env env, Value val, Mysqli conn)
          Escapes special characters.
static Value MysqlModule.mysql_result(Env env, MysqliResult result, int row, Value field)
          Returns the value of one field in the result set.
static boolean MysqlModule.mysql_select_db(Env env, java.lang.String dbName, Mysqli conn)
          Selects the database
static Value MysqlModule.mysql_stat(Env env, Mysqli conn)
          Returns a string with the status of the connection or NULL if error.
static Value MysqlModule.mysql_thread_id(Env env, Mysqli conn)
          Query an identifier that corresponds to this specific connection.
static java.lang.Object MysqlModule.mysql_unbuffered_query(Env env, StringValue name, Mysqli conn)
          Queries the database.
static Mysqli MysqliModule.mysqli_connect(Env env, StringValue host, StringValue userName, StringValue password, java.lang.String dbname, int port, StringValue socket)
          Returns a new connection.
static Mysqli MysqliModule.mysqli_connect(Env env, StringValue host, StringValue userName, StringValue password, java.lang.String dbname, int port, StringValue socket)
          Returns a new connection.
static Mysqli MysqliModule.mysqli_connect(Env env, StringValue host, StringValue userName, StringValue password, java.lang.String dbname, int port, StringValue socket)
          Returns a new connection.
static Mysqli MysqliModule.mysqli_connect(Env env, StringValue host, StringValue userName, StringValue password, java.lang.String dbname, int port, StringValue socket)
          Returns a new connection.
static Mysqli MysqliModule.mysqli_connect(Env env, StringValue host, StringValue userName, StringValue password, java.lang.String dbname, int port, StringValue socket)
          Returns a new connection.
static Mysqli MysqliModule.mysqli_connect(Env env, StringValue host, StringValue userName, StringValue password, java.lang.String dbname, int port, StringValue socket)
          Returns a new connection.
static Value MysqliModule.mysqli_fetch_array(Env env, MysqliResult result, int type)
          Returns a row for the result.
static Value MysqliModule.mysqli_fetch_object(Env env, MysqliResult result, java.lang.String className, Value[] args)
          Returns an object with properties that correspond to the fetched row and moves the data pointer ahead.
static Value MysqliModule.mysqli_fetch_object(Env env, MysqliResult result, java.lang.String className, Value[] args)
          Returns an object with properties that correspond to the fetched row and moves the data pointer ahead.
static Value MysqliModule.mysqli_info(Env env, Mysqli conn)
          Get information about the most recent query.
static Value MysqliModule.mysqli_query(Env env, Mysqli conn, StringValue sql, int resultMode)
          Executes a query and returns the result.
static boolean MysqliModule.mysqli_real_connect(Env env, Mysqli mysqli, StringValue host, StringValue userName, StringValue password, StringValue dbname, int port, StringValue socket, int flags)
          Connects to the database.
static boolean MysqliModule.mysqli_real_connect(Env env, Mysqli mysqli, StringValue host, StringValue userName, StringValue password, StringValue dbname, int port, StringValue socket, int flags)
          Connects to the database.
static boolean MysqliModule.mysqli_real_connect(Env env, Mysqli mysqli, StringValue host, StringValue userName, StringValue password, StringValue dbname, int port, StringValue socket, int flags)
          Connects to the database.
static boolean MysqliModule.mysqli_real_connect(Env env, Mysqli mysqli, StringValue host, StringValue userName, StringValue password, StringValue dbname, int port, StringValue socket, int flags)
          Connects to the database.
static boolean MysqliModule.mysqli_real_connect(Env env, Mysqli mysqli, StringValue host, StringValue userName, StringValue password, StringValue dbname, int port, StringValue socket, int flags)
          Connects to the database.
static boolean MysqliModule.mysqli_real_connect(Env env, Mysqli mysqli, StringValue host, StringValue userName, StringValue password, StringValue dbname, int port, StringValue socket, int flags)
          Connects to the database.
static boolean MysqliModule.mysqli_real_connect(Env env, Mysqli mysqli, StringValue host, StringValue userName, StringValue password, StringValue dbname, int port, StringValue socket, int flags)
          Connects to the database.
static boolean OracleModule.oci_bind_array_by_name(Env env, OracleStatement stmt, java.lang.String name, ArrayValue varArray, int maxTableLength, int maxItemLength, int type)
          Binds PHP array to Oracle PL/SQL array by name.
static boolean OracleModule.oci_bind_array_by_name(Env env, OracleStatement stmt, java.lang.String name, ArrayValue varArray, int maxTableLength, int maxItemLength, int type)
          Binds PHP array to Oracle PL/SQL array by name.
static boolean OracleModule.oci_bind_by_name(Env env, OracleStatement stmt, java.lang.String placeholderName, Value variable, int maxLength, int type)
          Binds the PHP variable to the Oracle placeholder
static boolean OracleModule.oci_bind_by_name(Env env, OracleStatement stmt, java.lang.String placeholderName, Value variable, int maxLength, int type)
          Binds the PHP variable to the Oracle placeholder
static Value OracleModule.oci_connect(Env env, java.lang.String username, java.lang.String password, java.lang.String db, java.lang.String charset, int sessionMode)
          Establishes a connection to the Oracle server
static Value OracleModule.oci_connect(Env env, java.lang.String username, java.lang.String password, java.lang.String db, java.lang.String charset, int sessionMode)
          Establishes a connection to the Oracle server
static Value OracleModule.oci_connect(Env env, java.lang.String username, java.lang.String password, java.lang.String db, java.lang.String charset, int sessionMode)
          Establishes a connection to the Oracle server
static boolean OracleModule.oci_define_by_name(Env env, OracleStatement stmt, java.lang.String columnName, Value variable, int type)
          Uses a PHP variable for the define-step during a SELECT
static java.lang.String OracleModule.oci_error(Env env, Value resource)
          Returns the last error found
static boolean OracleModule.oci_execute(Env env, OracleStatement stmt, int mode)
          Executes a statement
static Value OracleModule.oci_fetch_all(Env env, OracleStatement stmt, Value output, int skip, int maxrows, int flags)
          Fetches all rows of result data into an array
static Value OracleModule.oci_fetch_all(Env env, OracleStatement stmt, Value output, int skip, int maxrows, int flags)
          Fetches all rows of result data into an array
static Value OracleModule.oci_fetch_all(Env env, OracleStatement stmt, Value output, int skip, int maxrows, int flags)
          Fetches all rows of result data into an array
static Value OracleModule.oci_fetch_array(Env env, OracleStatement stmt, int mode)
          Returns the next row from the result data as an associative or numeric array, or both
static Value OracleModule.oci_field_size(Env env, OracleStatement stmt, Value fieldNameOrNumber)
          Returns field's size
static boolean OracleModule.oci_lob_copy(Env env, OracleOciLob lobTo, OracleOciLob lobFrom, int length)
          Copies large object
static OracleOciCollection OracleModule.oci_new_collection(Env env, Oracle conn, java.lang.String tdo, java.lang.String schema)
          Allocates new collection object
static Value OracleModule.oci_new_connect(Env env, java.lang.String username, java.lang.String password, java.lang.String db, java.lang.String charset, int sessionMode)
          Establishes a new connection to the Oracle server
static Value OracleModule.oci_new_connect(Env env, java.lang.String username, java.lang.String password, java.lang.String db, java.lang.String charset, int sessionMode)
          Establishes a new connection to the Oracle server
static Value OracleModule.oci_new_connect(Env env, java.lang.String username, java.lang.String password, java.lang.String db, java.lang.String charset, int sessionMode)
          Establishes a new connection to the Oracle server
static OracleOciLob OracleModule.oci_new_descriptor(Env env, Oracle conn, int type)
          Initializes a new empty LOB or FILE descriptor
static Value OracleModule.oci_pconnect(Env env, java.lang.String username, java.lang.String password, java.lang.String db, java.lang.String charset, int sessionMode)
          Connect to an Oracle database using a persistent connection
static Value OracleModule.oci_pconnect(Env env, java.lang.String username, java.lang.String password, java.lang.String db, java.lang.String charset, int sessionMode)
          Connect to an Oracle database using a persistent connection
static Value OracleModule.oci_pconnect(Env env, java.lang.String username, java.lang.String password, java.lang.String db, java.lang.String charset, int sessionMode)
          Connect to an Oracle database using a persistent connection
static boolean OracleModule.oci_set_prefetch(Env env, OracleStatement stmt, int rows)
          Sets number of rows to be prefetched
static boolean OracleModule.ocibindbyname(Env env, OracleStatement stmt, java.lang.String variable, Value value, int maxLength, int type)
          Alias of oci_bind_by_name()
static boolean OracleModule.ocibindbyname(Env env, OracleStatement stmt, java.lang.String variable, Value value, int maxLength, int type)
          Alias of oci_bind_by_name()
static Value OracleModule.ocicolumnsize(Env env, OracleStatement stmt, Value field)
          Alias of oci_field_size()
static Value OracleModule.ocicolumntype(Env env, OracleStatement stmt, int fieldNumber)
          Alias of oci_field_type()
static int OracleModule.ocicolumntyperaw(Env env, OracleStatement stmt, int field)
          Alias of oci_field_type_raw()
static boolean OracleModule.ocidefinebyname(Env env, OracleStatement stmt, java.lang.String columnName, Value variable, int type)
          Alias of oci_define_by_name()
static java.lang.String OracleModule.ocierror(Env env, Value resource)
          Alias of oci_error()
static boolean OracleModule.ociexecute(Env env, OracleStatement stmt, int mode)
          Alias of oci_execute()
static Value OracleModule.ocifetchinto(Env env, OracleStatement stmt, Value result, int mode)
          Fetches the next row into an array
static Value OracleModule.ocifetchstatement(Env env, OracleStatement stmt, Value output, int skip, int maxrows, int flags)
          Alias of oci_fetch_all()
static Value OracleModule.ocifetchstatement(Env env, OracleStatement stmt, Value output, int skip, int maxrows, int flags)
          Alias of oci_fetch_all()
static Value OracleModule.ocifetchstatement(Env env, OracleStatement stmt, Value output, int skip, int maxrows, int flags)
          Alias of oci_fetch_all()
static Value OracleModule.ocilogon(Env env, java.lang.String username, java.lang.String password, java.lang.String db, java.lang.String charset, int sessionMode)
          Alias of oci_connect()
static Value OracleModule.ocilogon(Env env, java.lang.String username, java.lang.String password, java.lang.String db, java.lang.String charset, int sessionMode)
          Alias of oci_connect()
static Value OracleModule.ocilogon(Env env, java.lang.String username, java.lang.String password, java.lang.String db, java.lang.String charset, int sessionMode)
          Alias of oci_connect()
static OracleOciCollection OracleModule.ocinewcollection(Env env, Oracle conn, java.lang.String tdo, java.lang.String schema)
          Alias of oci_new_collection()
static OracleOciLob OracleModule.ocinewdescriptor(Env env, Oracle conn, int type)
          Alias of oci_new_descriptor()
static Value OracleModule.ocinlogon(Env env, java.lang.String username, java.lang.String password, java.lang.String db, java.lang.String charset, int sessionMode)
          Alias of oci_new_connect()
static Value OracleModule.ocinlogon(Env env, java.lang.String username, java.lang.String password, java.lang.String db, java.lang.String charset, int sessionMode)
          Alias of oci_new_connect()
static Value OracleModule.ocinlogon(Env env, java.lang.String username, java.lang.String password, java.lang.String db, java.lang.String charset, int sessionMode)
          Alias of oci_new_connect()
static Value OracleModule.ociplogon(Env env, java.lang.String username, java.lang.String password, java.lang.String db, java.lang.String charset, int sessionMode)
          Alias of oci_pconnect()
static Value OracleModule.ociplogon(Env env, java.lang.String username, java.lang.String password, java.lang.String db, java.lang.String charset, int sessionMode)
          Alias of oci_pconnect()
static Value OracleModule.ociplogon(Env env, java.lang.String username, java.lang.String password, java.lang.String db, java.lang.String charset, int sessionMode)
          Alias of oci_pconnect()
static boolean OracleModule.ocisetprefetch(Env env, OracleStatement stmt, int rows)
          Alias of oci_set_prefetch()
static java.lang.String PostgresModule.pg_client_encoding(Env env, Postgres conn)
          Gets the client encoding
static boolean PostgresModule.pg_close(Env env, Postgres conn)
          Closes a PostgreSQL connection
static Postgres PostgresModule.pg_connect(Env env, java.lang.String connectionString, int connectionType)
          Open a PostgreSQL connection
static ArrayValue PostgresModule.pg_convert(Env env, Postgres conn, java.lang.String tableName, ArrayValue assocArray, int options)
          Convert associative array values into suitable for SQL statement
static boolean PostgresModule.pg_copy_from(Env env, Postgres conn, java.lang.String tableName, ArrayValue rows, java.lang.String delimiter, java.lang.String nullAs)
          Insert records into a table from an array
static boolean PostgresModule.pg_copy_from(Env env, Postgres conn, java.lang.String tableName, ArrayValue rows, java.lang.String delimiter, java.lang.String nullAs)
          Insert records into a table from an array
static ArrayValue PostgresModule.pg_copy_to(Env env, Postgres conn, java.lang.String tableName, java.lang.String delimiter, java.lang.String nullAs)
          Copy a table to an array
static ArrayValue PostgresModule.pg_copy_to(Env env, Postgres conn, java.lang.String tableName, java.lang.String delimiter, java.lang.String nullAs)
          Copy a table to an array
static java.lang.String PostgresModule.pg_dbname(Env env, Postgres conn)
          Get the database name
static boolean PostgresModule.pg_delete(Env env, Postgres conn, java.lang.String tableName, ArrayValue assocArray, int options)
          Deletes records
static boolean PostgresModule.pg_end_copy(Env env, Postgres conn)
          Sync with PostgreSQL backend
static StringValue PostgresModule.pg_errormessage(Env env, Postgres conn)
          pg_last_error() alias.
static ArrayValue PostgresModule.pg_fetch_all_columns(Env env, PostgresResult result, LongValue column)
          Fetches all rows in a particular result column as an array
static Value PostgresModule.pg_fetch_array(Env env, PostgresResult result, Value row, int resultType)
          Fetch a row as an array
static Value PostgresModule.pg_fetch_array(Env env, PostgresResult result, Value row, int resultType)
          Fetch a row as an array
static Value PostgresModule.pg_fetch_assoc(Env env, PostgresResult result, Value row)
          Fetch a row as an associative array
static Value PostgresModule.pg_fetch_object(Env env, PostgresResult result, Value row, int resultType)
          Fetch a row as an object
static Value PostgresModule.pg_fetch_object(Env env, PostgresResult result, Value row, int resultType)
          Fetch a row as an object
static Value PostgresModule.pg_fetch_result(Env env, PostgresResult result, Value row, Value fieldNameOrNumber)
          Returns values from a result resource
static Value PostgresModule.pg_fetch_row(Env env, PostgresResult result, Value row)
          Get a row as an enumerated array
static LongValue PostgresModule.pg_field_is_null(Env env, PostgresResult result, Value row, Value fieldNameOrNumber)
          Test if a field is SQL NULL
static int PostgresModule.pg_field_prtlen(Env env, PostgresResult result, Value rowNumber, Value fieldNameOrNumber)
          Returns the printed length
static java.lang.String PostgresModule.pg_field_table(Env env, PostgresResult result, int fieldNumber, boolean oidOnly)
          Returns the name or oid of the tables field
static LongValue PostgresModule.pg_fieldisnull(Env env, PostgresResult result, Value row, Value fieldNameOrNumber)
          pg_field_is_null() alias.
static int PostgresModule.pg_fieldprtlen(Env env, PostgresResult result, Value rowNumber, Value fieldNameOrNumber)
          pg_field_ptrlen() alias.
static ArrayValue PostgresModule.pg_get_notify(Env env, Postgres conn, int resultType)
          Gets SQL NOTIFY message
static PostgresResult PostgresModule.pg_get_result(Env env, Postgres conn)
          Get asynchronous query result
static java.lang.String PostgresModule.pg_host(Env env, Postgres conn)
          Returns the host name associated with the connection
static boolean PostgresModule.pg_insert(Env env, Postgres conn, java.lang.String tableName, ArrayValue assocArray, int options)
          Insert array into table
static StringValue PostgresModule.pg_last_error(Env env, Postgres conn)
          Get the last error message string of a connection
static LongValue PostgresModule.pg_lo_create(Env env, Postgres conn)
          Create a large object
static StringValue PostgresModule.pg_lo_read(Env env, java.lang.Object largeObject, int len)
          Read a large object
static boolean PostgresModule.pg_lo_seek(Env env, java.lang.Object largeObject, int offset, int whence)
          Seeks position within a large object
static LongValue PostgresModule.pg_lo_write(Env env, java.lang.Object largeObject, java.lang.String data, int len)
          Write to a large object
static LongValue PostgresModule.pg_locreate(Env env, Postgres conn)
          pg_lo_create() alias
static StringValue PostgresModule.pg_loread(Env env, java.lang.Object largeObject, int len)
          pg_lo_read() alias.
static LongValue PostgresModule.pg_lowrite(Env env, java.lang.Object largeObject, java.lang.String data, int len)
          pg_lo_write() alias.
static java.lang.String PostgresModule.pg_options(Env env, Postgres conn)
          Get the options associated with the connection
static Postgres PostgresModule.pg_pconnect(Env env, java.lang.String connectionString, int connectType)
          Open a persistent PostgreSQL connection
static boolean PostgresModule.pg_ping(Env env, Postgres conn)
          Ping database connection
static StringValue PostgresModule.pg_port(Env env, Postgres conn)
          Return the port number associated with the connection
static java.lang.String PostgresModule.pg_result_error(Env env, PostgresResult result)
          Get error message associated with result
static int PostgresModule.pg_result_status(Env env, PostgresResult result, int type)
          Get status of query result
static Value PostgresModule.pg_result(Env env, PostgresResult result, Value row, Value fieldNameOrNumber)
          Returns values from a result resource
static ArrayValue PostgresModule.pg_select(Env env, Postgres conn, java.lang.String tableName, ArrayValue assocArray, int options)
          Select records
static boolean PostgresModule.pg_trace(Env env, Path path, java.lang.String mode, Postgres conn)
          Enable tracing a PostgreSQL connection
static boolean PostgresModule.pg_trace(Env env, Path path, java.lang.String mode, Postgres conn)
          Enable tracing a PostgreSQL connection
static int PostgresModule.pg_transaction_status(Env env, Postgres conn)
          Returns the current in-transaction status of the server
static java.lang.String PostgresModule.pg_tty(Env env, Postgres conn)
          Return the TTY name associated with the connection
static boolean PostgresModule.pg_untrace(Env env, Postgres conn)
          Disable tracing of a PostgreSQL connection
static boolean PostgresModule.pg_update(Env env, Postgres conn, java.lang.String tableName, ArrayValue data, ArrayValue condition, int options)
          Update table
static ArrayValue PostgresModule.pg_version(Env env, Postgres conn)
          Returns an array with client, protocol and server version (when available)
 Value PDO.prepare(Env env, java.lang.String query, ArrayValue driverOptions)
          Prepares a statement for execution.
 Value PDO.query(Env env, java.lang.String query, int mode, Value[] args)
          Queries the database
 Value PDO.query(Env env, java.lang.String query, int mode, Value[] args)
          Queries the database
 Value Mysqli.query(Env env, StringValue sqlV, int resultMode)
          Executes a query.
 java.lang.String PDO.quote(java.lang.String query, int parameterType)
          Quotes the string
 boolean Mysqli.real_connect(Env env, StringValue host, StringValue userName, StringValue password, StringValue dbname, int port, StringValue socket, int flags)
          Connects to the underlying database.
 boolean Mysqli.real_connect(Env env, StringValue host, StringValue userName, StringValue password, StringValue dbname, int port, StringValue socket, int flags)
          Connects to the underlying database.
 boolean Mysqli.real_connect(Env env, StringValue host, StringValue userName, StringValue password, StringValue dbname, int port, StringValue socket, int flags)
          Connects to the underlying database.
 boolean Mysqli.real_connect(Env env, StringValue host, StringValue userName, StringValue password, StringValue dbname, int port, StringValue socket, int flags)
          Connects to the underlying database.
 boolean Mysqli.real_connect(Env env, StringValue host, StringValue userName, StringValue password, StringValue dbname, int port, StringValue socket, int flags)
          Connects to the underlying database.
 boolean Mysqli.real_connect(Env env, StringValue host, StringValue userName, StringValue password, StringValue dbname, int port, StringValue socket, int flags)
          Connects to the underlying database.
 boolean Mysqli.real_connect(Env env, StringValue host, StringValue userName, StringValue password, StringValue dbname, int port, StringValue socket, int flags)
          Connects to the underlying database.
 boolean OracleOciLob.save(Env env, java.lang.String data, long offset)
          Saves data to the large object
 boolean OracleOciLob.seek(Env env, long offset, int whence)
          Sets the internal pointer of the large object
 boolean OracleOciLob.truncate(Env env, long length)
          Truncates large object
 LongValue OracleOciLob.write(Env env, java.lang.String data, long length)
          Writes data to the large object
 boolean OracleOciLob.writeTemporary(Env env, java.lang.String data, int lobType)
          Writes temporary large object
 boolean OracleOciLob.writeToFile(Env env, Path file, long start, long length)
          Alias of export()
 boolean OracleOciLob.writeToFile(Env env, Path file, long start, long length)
          Alias of export()
 

Constructor parameters in com.caucho.quercus.lib.db with annotations of type Optional
Mysqli(Env env, StringValue host, StringValue user, StringValue password, java.lang.String db, int port, StringValue socket)
          This is the constructor for the mysqli class.
Mysqli(Env env, StringValue host, StringValue user, StringValue password, java.lang.String db, int port, StringValue socket)
          This is the constructor for the mysqli class.
Mysqli(Env env, StringValue host, StringValue user, StringValue password, java.lang.String db, int port, StringValue socket)
          This is the constructor for the mysqli class.
Mysqli(Env env, StringValue host, StringValue user, StringValue password, java.lang.String db, int port, StringValue socket)
          This is the constructor for the mysqli class.
Mysqli(Env env, StringValue host, StringValue user, StringValue password, java.lang.String db, int port, StringValue socket)
          This is the constructor for the mysqli class.
Mysqli(Env env, StringValue host, StringValue user, StringValue password, java.lang.String db, int port, StringValue socket)
          This is the constructor for the mysqli class.
MysqliResource(Env env, StringValue host, StringValue user, StringValue password, java.lang.String db, int port, StringValue socket)
          This is the constructor for the mysqli class.
MysqliResource(Env env, StringValue host, StringValue user, StringValue password, java.lang.String db, int port, StringValue socket)
          This is the constructor for the mysqli class.
MysqliResource(Env env, StringValue host, StringValue user, StringValue password, java.lang.String db, int port, StringValue socket)
          This is the constructor for the mysqli class.
MysqliResource(Env env, StringValue host, StringValue user, StringValue password, java.lang.String db, int port, StringValue socket)
          This is the constructor for the mysqli class.
MysqliResource(Env env, StringValue host, StringValue user, StringValue password, java.lang.String db, int port, StringValue socket)
          This is the constructor for the mysqli class.
MysqliResource(Env env, StringValue host, StringValue user, StringValue password, java.lang.String db, int port, StringValue socket)
          This is the constructor for the mysqli class.
Oracle(Env env, java.lang.String host, java.lang.String user, java.lang.String password, java.lang.String db, int port, java.lang.String driver, java.lang.String url)
           
Oracle(Env env, java.lang.String host, java.lang.String user, java.lang.String password, java.lang.String db, int port, java.lang.String driver, java.lang.String url)
           
Oracle(Env env, java.lang.String host, java.lang.String user, java.lang.String password, java.lang.String db, int port, java.lang.String driver, java.lang.String url)
           
Oracle(Env env, java.lang.String host, java.lang.String user, java.lang.String password, java.lang.String db, int port, java.lang.String driver, java.lang.String url)
           
Oracle(Env env, java.lang.String host, java.lang.String user, java.lang.String password, java.lang.String db, int port, java.lang.String driver, java.lang.String url)
           
Oracle(Env env, java.lang.String host, java.lang.String user, java.lang.String password, java.lang.String db, int port, java.lang.String driver, java.lang.String url)
           
Oracle(Env env, java.lang.String host, java.lang.String user, java.lang.String password, java.lang.String db, int port, java.lang.String driver, java.lang.String url)
           
PDO(Env env, java.lang.String dsn, java.lang.String user, java.lang.String pass, ArrayValue options)
           
PDO(Env env, java.lang.String dsn, java.lang.String user, java.lang.String pass, ArrayValue options)
           
PDO(Env env, java.lang.String dsn, java.lang.String user, java.lang.String pass, ArrayValue options)
           
Postgres(Env env, java.lang.String host, java.lang.String user, java.lang.String password, java.lang.String db, int port, java.lang.String driver, java.lang.String url)
           
Postgres(Env env, java.lang.String host, java.lang.String user, java.lang.String password, java.lang.String db, int port, java.lang.String driver, java.lang.String url)
           
Postgres(Env env, java.lang.String host, java.lang.String user, java.lang.String password, java.lang.String db, int port, java.lang.String driver, java.lang.String url)
           
Postgres(Env env, java.lang.String host, java.lang.String user, java.lang.String password, java.lang.String db, int port, java.lang.String driver, java.lang.String url)
           
Postgres(Env env, java.lang.String host, java.lang.String user, java.lang.String password, java.lang.String db, int port, java.lang.String driver, java.lang.String url)
           
Postgres(Env env, java.lang.String host, java.lang.String user, java.lang.String password, java.lang.String db, int port, java.lang.String driver, java.lang.String url)
           
Postgres(Env env, java.lang.String host, java.lang.String user, java.lang.String password, java.lang.String db, int port, java.lang.String driver, java.lang.String url)
           
 

Uses of Optional in com.caucho.quercus.lib.dom
 

Method parameters in com.caucho.quercus.lib.dom with annotations of type Optional
static DOMComment DOMComment.__construct(Env env, java.lang.String value)
           
static DOMText DOMText.__construct(Env env, java.lang.String value)
           
static DOMAttr DOMAttr.__construct(Env env, java.lang.String name, java.lang.String value)
           
static DOMDocument DOMDocument.__construct(Env env, java.lang.String version, java.lang.String encoding)
           
static DOMDocument DOMDocument.__construct(Env env, java.lang.String version, java.lang.String encoding)
           
static DOMProcessingInstruction DOMProcessingInstruction.__construct(Env env, java.lang.String name, java.lang.String data)
           
static DOMElement DOMElement.__construct(Env env, java.lang.String name, java.lang.String textContent, java.lang.String namespace)
           
static DOMElement DOMElement.__construct(Env env, java.lang.String name, java.lang.String textContent, java.lang.String namespace)
           
static DOMDocument DOMImplementation.createDocument(Env env, java.lang.String namespaceURI, java.lang.String name, DOMDocumentType docType)
           
static DOMDocument DOMImplementation.createDocument(Env env, java.lang.String namespaceURI, java.lang.String name, DOMDocumentType docType)
           
static DOMDocument DOMImplementation.createDocument(Env env, java.lang.String namespaceURI, java.lang.String name, DOMDocumentType docType)
           
static DOMDocumentType DOMImplementation.createDocumentType(Env env, java.lang.String qualifiedName, java.lang.String publicId, java.lang.String systemId)
           
static DOMDocumentType DOMImplementation.createDocumentType(Env env, java.lang.String qualifiedName, java.lang.String publicId, java.lang.String systemId)
           
 boolean DOMDocument.load(Env env, Path path, Value options)
           
 boolean DOMDocument.loadXML(Env env, StringValue source, Value options)
           
 DOMNodeList DOMXPath.query(Env env, java.lang.String expression, DOMNode<org.w3c.dom.Node> contextNode)
           
 Value DOMDocument.save(Env env, Path path, Value options)
           
 StringValue DOMDocument.saveXML(Env env, DOMNode node, Value options)
           
 StringValue DOMDocument.saveXML(Env env, DOMNode node, Value options)
           
 int DOMDocument.xinclude(Env env, Value options)
           
 

Uses of Optional in com.caucho.quercus.lib.file
 

Method parameters in com.caucho.quercus.lib.file with annotations of type Optional
static Value FileModule.basename(StringValue path, StringValue suffix)
          Returns the base name of a string.
 Value FileModule.fgetcsv(Env env, BinaryInput is, int length, java.lang.String delimiter, java.lang.String enclosure)
          Parses a comma-separated-value line from a file.
 Value FileModule.fgetcsv(Env env, BinaryInput is, int length, java.lang.String delimiter, java.lang.String enclosure)
          Parses a comma-separated-value line from a file.
 Value FileModule.fgetcsv(Env env, BinaryInput is, int length, java.lang.String delimiter, java.lang.String enclosure)
          Parses a comma-separated-value line from a file.
static Value FileModule.fgets(Env env, BinaryInput is, int length)
          Returns the next line
static Value FileModule.fgetss(Env env, BinaryInput is, int length, Value allowedTags)
          Returns the next line stripping tags
static Value FileModule.fgetss(Env env, BinaryInput is, int length, Value allowedTags)
          Returns the next line stripping tags
static StringValue FileModule.file_get_contents(Env env, StringValue filename, boolean useIncludePath, Value context, long offset, long maxLen)
          Parses the file, returning it as a string array.
static StringValue FileModule.file_get_contents(Env env, StringValue filename, boolean useIncludePath, Value context, long offset, long maxLen)
          Parses the file, returning it as a string array.
static StringValue FileModule.file_get_contents(Env env, StringValue filename, boolean useIncludePath, Value context, long offset, long maxLen)
          Parses the file, returning it as a string array.
static StringValue FileModule.file_get_contents(Env env, StringValue filename, boolean useIncludePath, Value context, long offset, long maxLen)
          Parses the file, returning it as a string array.
static Value FileModule.file_put_contents(Env env, StringValue filename, Value data, int flags, Value context)
          Writes data to a file.
static Value FileModule.file_put_contents(Env env, StringValue filename, Value data, int flags, Value context)
          Writes data to a file.
static Value FileModule.file(Env env, StringValue filename, int flags, Value context)
          Parses the file, returning it in an array.
static Value FileModule.file(Env env, StringValue filename, int flags, Value context)
          Parses the file, returning it in an array.
static boolean FileModule.flock(Env env, LockableStream fileV, int operation, Value wouldBlock)
          Advisory locking
static boolean FileModule.fnmatch(Env env, java.lang.String pattern, java.lang.String string, int flags)
          Returns true if the given string matches the given glob pattern.
static BinaryStream FileModule.fopen(Env env, StringValue filename, java.lang.String mode, boolean useIncludePath, Value contextV)
          Opens a file.
static BinaryStream FileModule.fopen(Env env, StringValue filename, java.lang.String mode, boolean useIncludePath, Value contextV)
          Opens a file.
 Value FileModule.fputcsv(Env env, BinaryOutput os, ArrayValue value, StringValue delimiter, StringValue enclosure)
          Parses a comma-separated-value line from a file.
 Value FileModule.fputcsv(Env env, BinaryOutput os, ArrayValue value, StringValue delimiter, StringValue enclosure)
          Parses a comma-separated-value line from a file.
static Value FileModule.fputs(Env env, BinaryOutput os, java.io.InputStream value, int length)
          Writes a string to the file.
static Value FileModule.fscanf(Env env, BinaryInput is, StringValue format, Value[] args)
          Reads and parses a line.
static Value FileModule.fseek(Env env, BinaryStream binaryStream, long offset, int whence)
          Sets the current position.
static Value FileModule.fwrite(Env env, BinaryOutput os, java.io.InputStream value, int length)
          Writes a string to the file.
static Value FileModule.glob(Env env, java.lang.String pattern, int flags)
          Matches all files with the given pattern.
static boolean FileModule.mkdir(Env env, StringValue dirname, int mode, boolean recursive, Value context)
          Makes the directory
static boolean FileModule.mkdir(Env env, StringValue dirname, int mode, boolean recursive, Value context)
          Makes the directory
static boolean FileModule.mkdir(Env env, StringValue dirname, int mode, boolean recursive, Value context)
          Makes the directory
static Value FileModule.opendir(Env env, StringValue pathName, Value context)
          Opens a directory
static Value FileModule.parse_ini_file(Env env, Path path, boolean processSections)
          Parses the ini file.
static Value FileModule.pathinfo(Env env, java.lang.String path, Value optionsV)
          Parses the path, splitting it into parts.
 Value FileModule.readfile(Env env, StringValue filename, boolean useIncludePath, Value context)
          Read the contents of a file and write them out.
 Value FileModule.readfile(Env env, StringValue filename, boolean useIncludePath, Value context)
          Read the contents of a file and write them out.
static boolean FileModule.rmdir(Env env, StringValue filename, Value context)
          remove a directory
static Value FileModule.scandir(Env env, StringValue fileName, int order, Value context)
          Scan the directory
static Value FileModule.scandir(Env env, StringValue fileName, int order, Value context)
          Scan the directory
static boolean SocketModule.socket_bind(Env env, SocketInputOutput socket, StringValue address, int port)
           
static boolean SocketModule.socket_connect(Env env, SocketInputOutput socket, StringValue address, int port)
           
static Value SocketModule.socket_read(Env env, SocketInputOutput socket, int length, int type)
           
static boolean SocketModule.socket_set_timeout(Env env, Value stream, int seconds, int milliseconds)
           
 boolean SocketModule.socket_shutdown(Env env, SocketInputOutput file, int how)
          Closes a socket.
static Value SocketModule.socket_write(Env env, SocketInputOutput socket, java.io.InputStream is, int length)
           
static Value StreamModule.stream_context_create(Env env, ArrayValue options)
          Creates a stream context.
static Value StreamModule.stream_context_get_default(Env env, ArrayValue options)
          Returns the default stream context.
static long StreamModule.stream_copy_to_stream(Env env, BinaryInput in, BinaryOutput out, int length, int offset)
          Copies from an input stream to an output stream
static long StreamModule.stream_copy_to_stream(Env env, BinaryInput in, BinaryOutput out, int length, int offset)
          Copies from an input stream to an output stream
static Value StreamModule.stream_get_contents(Env env, BinaryInput in, long maxLen, long offset)
          Returns the rest of the file as a string
static Value StreamModule.stream_get_contents(Env env, BinaryInput in, long maxLen, long offset)
          Returns the rest of the file as a string
static Value StreamModule.stream_get_line(Env env, BinaryInput file, long length)
          Returns the next line
static boolean StreamModule.stream_register_wrapper(Env env, StringValue protocol, java.lang.String className, int flags)
           
static boolean StreamModule.stream_set_timeout(Env env, Value stream, int seconds, int microseconds)
           
static SocketInputOutput StreamModule.stream_socket_client(Env env, java.lang.String remoteSocket, Value errorInt, Value errorStr, double timeout, int flags, StreamContextResource context)
          Opens an Internet connection.
static SocketInputOutput StreamModule.stream_socket_client(Env env, java.lang.String remoteSocket, Value errorInt, Value errorStr, double timeout, int flags, StreamContextResource context)
          Opens an Internet connection.
static SocketInputOutput StreamModule.stream_socket_client(Env env, java.lang.String remoteSocket, Value errorInt, Value errorStr, double timeout, int flags, StreamContextResource context)
          Opens an Internet connection.
static SocketInputOutput StreamModule.stream_socket_client(Env env, java.lang.String remoteSocket, Value errorInt, Value errorStr, double timeout, int flags, StreamContextResource context)
          Opens an Internet connection.
static SocketInputOutput StreamModule.stream_socket_client(Env env, java.lang.String remoteSocket, Value errorInt, Value errorStr, double timeout, int flags, StreamContextResource context)
          Opens an Internet connection.
static boolean StreamModule.stream_wrapper_register(Env env, StringValue protocol, java.lang.String className, int flags)
          Register a wrapper for a protocol.
static boolean FileModule.touch(Env env, StringValue filename, int time, int atime)
          sets the time to the current time
static boolean FileModule.touch(Env env, StringValue filename, int time, int atime)
          sets the time to the current time
static int FileModule.umask(Env env, int maskV)
          umask call
static boolean FileModule.unlink(Env env, StringValue filename, Value context)
          remove call
 

Uses of Optional in com.caucho.quercus.lib.filter
 

Method parameters in com.caucho.quercus.lib.filter with annotations of type Optional
static Value FilterModule.filter_input(Env env, int type, StringValue name, int filterId, Value flagV)
           
static Value FilterModule.filter_input(Env env, int type, StringValue name, int filterId, Value flagV)
           
static Value FilterModule.filter_var(Env env, Value value, int filterId, Value flagV)
           
static Value FilterModule.filter_var(Env env, Value value, int filterId, Value flagV)
           
 

Uses of Optional in com.caucho.quercus.lib.gae
 

Method parameters in com.caucho.quercus.lib.gae with annotations of type Optional
static java.lang.String GaeUserService.createLoginURL(java.lang.String destinationUrl, java.lang.String authDomain, java.lang.String federatedIdentity, java.util.Set<java.lang.String> attributesRequest)
           
static java.lang.String GaeUserService.createLoginURL(java.lang.String destinationUrl, java.lang.String authDomain, java.lang.String federatedIdentity, java.util.Set<java.lang.String> attributesRequest)
           
static java.lang.String GaeUserService.createLoginURL(java.lang.String destinationUrl, java.lang.String authDomain, java.lang.String federatedIdentity, java.util.Set<java.lang.String> attributesRequest)
           
static java.lang.String GaeUserService.createLogoutURL(java.lang.String destinationUrl, java.lang.String authDomain)
           
static java.lang.String GaeUserServiceModule.gae_users_create_login_url(Env env, java.lang.String destinationUrl, java.lang.String authDomain, java.lang.String federatedIdentity, Value attributesRequest)
           
static java.lang.String GaeUserServiceModule.gae_users_create_login_url(Env env, java.lang.String destinationUrl, java.lang.String authDomain, java.lang.String federatedIdentity, Value attributesRequest)
           
static java.lang.String GaeUserServiceModule.gae_users_create_login_url(Env env, java.lang.String destinationUrl, java.lang.String authDomain, java.lang.String federatedIdentity, Value attributesRequest)
           
static java.lang.String GaeUserServiceModule.gae_users_create_logout_url(Env env, java.lang.String destinationUrl, java.lang.String authDomain)
           
 

Uses of Optional in com.caucho.quercus.lib.gettext
 

Method parameters in com.caucho.quercus.lib.gettext with annotations of type Optional
 java.lang.String GettextModule.textdomain(Env env, Value domain)
          Changes the current domain.
 

Uses of Optional in com.caucho.quercus.lib.i18n
 

Method parameters in com.caucho.quercus.lib.i18n with annotations of type Optional
static Value UnicodeModule.iconv_get_encoding(Env env, java.lang.String type)
          Returns the current encoding.
static Value UnicodeModule.iconv_mime_decode_headers(Env env, StringValue encoded_headers, int mode, java.lang.String charset)
          Decodes all the headers and place them in an array.
static Value UnicodeModule.iconv_mime_decode_headers(Env env, StringValue encoded_headers, int mode, java.lang.String charset)
          Decodes all the headers and place them in an array.
static Value UnicodeModule.iconv_mime_decode(Env env, StringValue encodedHeader, int mode, java.lang.String charset)
          Uses iconv.internal_encoding.
static Value UnicodeModule.iconv_mime_decode(Env env, StringValue encodedHeader, int mode, java.lang.String charset)
          Uses iconv.internal_encoding.
static Value UnicodeModule.iconv_mime_encode(Env env, StringValue fieldName, StringValue fieldValue, ArrayValue preferences)
          Encodes a MIME header.
static Value UnicodeModule.iconv_strlen(Env env, StringValue str, java.lang.String charset)
          Returns the length of the decoded string.
static Value UnicodeModule.iconv_strpos(Env env, StringValue haystack, StringValue needle, int offset, java.lang.String charset)
          Returns the first occurence of the substring in the haystack.
static Value UnicodeModule.iconv_strpos(Env env, StringValue haystack, StringValue needle, int offset, java.lang.String charset)
          Returns the first occurence of the substring in the haystack.
static Value UnicodeModule.iconv_strrpos(Env env, StringValue haystack, StringValue needle, java.lang.String charset)
          Returns the last occurence of the substring in the haystack.
static Value UnicodeModule.iconv_substr(Env env, StringValue str, int offset, int length, java.lang.String charset)
          Uses iconv.internal_encoding.
static Value UnicodeModule.iconv_substr(Env env, StringValue str, int offset, int length, java.lang.String charset)
          Uses iconv.internal_encoding.
 boolean MbstringModule.mb_check_encoding(Env env, Value var, java.lang.String encoding)
          Checks if the string is correctly encoded.
 boolean MbstringModule.mb_check_encoding(Env env, Value var, java.lang.String encoding)
          Checks if the string is correctly encoded.
static StringValue MbstringModule.mb_convert_case(Env env, StringValue str, int mode, java.lang.String encoding)
          Upper-cases, lower-cases, or capitalizes first letter of words.
static Value MbstringModule.mb_convert_encoding(Env env, StringValue str, java.lang.String destEncoding, Value fromEncodings)
          Converts string of one encoding to another.
static StringValue MbstringModule.mb_convert_kana(Env env, StringValue str, java.lang.String option, java.lang.String encoding)
          Performs Japanese specific charset conversion.
static StringValue MbstringModule.mb_convert_kana(Env env, StringValue str, java.lang.String option, java.lang.String encoding)
          Performs Japanese specific charset conversion.
static StringValue MbstringModule.mb_decode_numericentity(Env env, StringValue str, ArrayValue convmap, java.lang.String encoding)
          Decodes HTML numeric entity.
static Value MbstringModule.mb_detect_encoding(Env env, StringValue str, Value encodingV, boolean isStrict)
          Detects encoding of string.
static Value MbstringModule.mb_detect_encoding(Env env, StringValue str, Value encodingV, boolean isStrict)
          Detects encoding of string.
static Value MbstringModule.mb_detect_order(Env env, Value encodingV)
          Specifies order of charsets to test when detecting encoding.
static StringValue MbstringModule.mb_encode_mimeheader(Env env, StringValue str, java.lang.String charset, java.lang.String transfer_encoding, java.lang.String linefeed)
          Encodes a string into mime.
static StringValue MbstringModule.mb_encode_mimeheader(Env env, StringValue str, java.lang.String charset, java.lang.String transfer_encoding, java.lang.String linefeed)
          Encodes a string into mime.
static StringValue MbstringModule.mb_encode_mimeheader(Env env, StringValue str, java.lang.String charset, java.lang.String transfer_encoding, java.lang.String linefeed)
          Encodes a string into mime.
static StringValue MbstringModule.mb_encode_numericentity(Env env, StringValue str, ArrayValue convmap, java.lang.String encoding)
          Encodes HTML numeric string entity.
static BooleanValue MbstringModule.mb_ereg_match(Env env, UnicodeEreg ereg, StringValue string, java.lang.String option)
          Returns true if pattern matches a part of string.
static Value MbstringModule.mb_ereg_replace(Env env, Value eregValue, StringValue replacement, StringValue subject, java.lang.String option)
          Multibyte version of ereg_replace.
static BooleanValue MbstringModule.mb_ereg_search_init(Env env, StringValue string, Value rawRegexp, Value option)
          Initializes a ereg state object.
static BooleanValue MbstringModule.mb_ereg_search_init(Env env, StringValue string, Value rawRegexp, Value option)
          Initializes a ereg state object.
static Value MbstringModule.mb_ereg_search_pos(Env env, Value rawRegexp, Value option)
          Returns index and position after matching.
static Value MbstringModule.mb_ereg_search_pos(Env env, Value rawRegexp, Value option)
          Returns index and position after matching.
static Value MbstringModule.mb_ereg_search_regs(Env env, Value rawRegexp, Value option)
          Returns match array after matching.
static Value MbstringModule.mb_ereg_search_regs(Env env, Value rawRegexp, Value option)
          Returns match array after matching.
static BooleanValue MbstringModule.mb_ereg_search(Env env, Value rawRegexp, Value option)
          Returns whether or not pattern matches string.
static BooleanValue MbstringModule.mb_ereg_search(Env env, Value rawRegexp, Value option)
          Returns whether or not pattern matches string.
static Value MbstringModule.mb_ereg(Env env, UnicodeEreg ereg, StringValue string, ArrayValue regs)
          Multibyte version of ereg.
static Value MbstringModule.mb_eregi_replace(Env env, Value pattern, StringValue replacement, StringValue subject, java.lang.String option)
          Multibyte version of eregi_replace.
static Value MbstringModule.mb_eregi(Env env, UnicodeEregi eregi, StringValue string, ArrayValue regs)
          Multibyte version of eregi.
static Value MbstringModule.mb_get_info(Env env, java.lang.String type)
          Returns current mb settings.
static Value MbstringModule.mb_http_input(Env env, java.lang.String type)
          Returns and/or sets the http input encoding
static Value MbstringModule.mb_http_output(Env env, java.lang.String encoding)
          Returns and/or sets the http output encoding
static Value MbstringModule.mb_internal_encoding(Env env, java.lang.String encoding)
          Returns and/or sets the internal encoding.
static Value MbstringModule.mb_language(Env env, java.lang.String language)
          Returns and/or sets the encoding for mail.
static BooleanValue MbstringModule.mb_parse_str(Env env, StringValue strValue, Value result)
          Multibyte version of parse_str.
static Value MbstringModule.mb_regex_encoding(Env env, java.lang.String encoding)
          Returns and/or sets encoding for mb regular expressions.
static StringValue MbstringModule.mb_regex_set_options(Env env, java.lang.String options)
          XXX: what does this actually do?
static BooleanValue MbstringModule.mb_send_mail(Env env, StringValue to, StringValue subject, StringValue message, StringValue additionalHeaders, StringValue additionalParameters)
          Multibyte version of mail.
static BooleanValue MbstringModule.mb_send_mail(Env env, StringValue to, StringValue subject, StringValue message, StringValue additionalHeaders, StringValue additionalParameters)
          Multibyte version of mail.
static Value MbstringModule.mb_split(Env env, UnicodeEreg ereg, StringValue string, long limit)
          Multibyte version of split.
static StringValue MbstringModule.mb_strcut(Env env, StringValue str, int start, int length, java.lang.String encoding)
          Similar to substr except start index is at the beginning of char boundaries.
static StringValue MbstringModule.mb_strcut(Env env, StringValue str, int start, int length, java.lang.String encoding)
          Similar to substr except start index is at the beginning of char boundaries.
static StringValue MbstringModule.mb_strimwidth(Env env, StringValue str, int start, int width, StringValue trimmarker, java.lang.String encoding)
          Truncates the string.
static StringValue MbstringModule.mb_strimwidth(Env env, StringValue str, int start, int width, StringValue trimmarker, java.lang.String encoding)
          Truncates the string.
static LongValue MbstringModule.mb_strlen(Env env, StringValue str, java.lang.String encoding)
          Multibyte version of strlen.
static Value MbstringModule.mb_strpos(Env env, StringValue haystack, StringValue needle, int offset, java.lang.String encoding)
          Multibyte version of strpos.
static Value MbstringModule.mb_strpos(Env env, StringValue haystack, StringValue needle, int offset, java.lang.String encoding)
          Multibyte version of strpos.
static Value MbstringModule.mb_strrpos(Env env, StringValue haystack, StringValue needle, Value offsetV, java.lang.String encoding)
          Multibyte version of strrpos.
static Value MbstringModule.mb_strrpos(Env env, StringValue haystack, StringValue needle, Value offsetV, java.lang.String encoding)
          Multibyte version of strrpos.
static StringValue MbstringModule.mb_strtolower(Env env, StringValue str, java.lang.String encoding)
          Converts all characters to lower-case.
static StringValue MbstringModule.mb_strtoupper(Env env, StringValue str, java.lang.String encoding)
          Converts all characters to upper-case.
static LongValue MbstringModule.mb_strwidth(Env env, StringValue str, java.lang.String encoding)
          Returns the width of this multibyte string.
static LongValue MbstringModule.mb_substr_count(Env env, StringValue haystack, StringValue needle, java.lang.String encoding)
           
static StringValue MbstringModule.mb_substr(Env env, StringValue str, int start, Value lengthV, java.lang.String encoding)
          Multibyte version of substr.
static StringValue MbstringModule.mb_substr(Env env, StringValue str, int start, Value lengthV, java.lang.String encoding)
          Multibyte version of substr.
static Value UnicodeModule.unicode_decode(Env env, BinaryValue str, java.lang.String encoding, int errorMode)
           
static Value UnicodeModule.unicode_encode(Env env, UnicodeValue str, java.lang.String encoding, int errorMode)
           
 

Uses of Optional in com.caucho.quercus.lib.image
 

Method parameters in com.caucho.quercus.lib.image with annotations of type Optional
static Value ImageModule.getimagesize(Env env, Path file, ArrayValue imageArray)
          Returns the environment value.
static long ImageModule.imagecolortransparent(QuercusImage image, int color)
          Define a color as transparent
static boolean ImageModule.imagefilter(Env env, QuercusImage image, int filterType, int arg1, int arg2, int arg3)
          Applies a filter to an image
static boolean ImageModule.imagefilter(Env env, QuercusImage image, int filterType, int arg1, int arg2, int arg3)
          Applies a filter to an image
static boolean ImageModule.imagefilter(Env env, QuercusImage image, int filterType, int arg1, int arg2, int arg3)
          Applies a filter to an image
static Value ImageModule.imageftbbox(Env env, double size, double angle, StringValue fontFile, java.lang.String text, ArrayValue extra)
          draws a true type font image
static Value ImageModule.imagefttext(Env env, QuercusImage image, double size, double angle, int x, int y, int color, StringValue fontFile, java.lang.String text, ArrayValue extra)
          draws a true type font image
static void ImageModule.imagegd(QuercusImage image, Path file)
          Output GD image to browser or file
static void ImageModule.imagegd2(QuercusImage image, Path file)
          Output GD2 image to browser or file
static boolean ImageModule.imagegif(Env env, QuercusImage image, Path path)
          Output image to browser or file
static boolean ImageModule.imageinterlace(QuercusImage image, java.lang.Boolean enable)
          Enable or disable interlace
static boolean ImageModule.imagejpeg(Env env, QuercusImage image, Path path, int quality)
          Output image to browser or file
static boolean ImageModule.imagejpeg(Env env, QuercusImage image, Path path, int quality)
          Output image to browser or file
static boolean ImageModule.imagepng(Env env, QuercusImage image, Path path)
          Output a PNG image to either the browser or a file
static ArrayValue ImageModule.imagepsbbox(java.lang.String text, int font, int size, int space, int tightness, float angle)
          Give the bounding box of a text rectangle using PostScript Type1 fonts
static ArrayValue ImageModule.imagepsbbox(java.lang.String text, int font, int size, int space, int tightness, float angle)
          Give the bounding box of a text rectangle using PostScript Type1 fonts
static ArrayValue ImageModule.imagepsbbox(java.lang.String text, int font, int size, int space, int tightness, float angle)
          Give the bounding box of a text rectangle using PostScript Type1 fonts
static ArrayValue ImageModule.imagepstext(QuercusImage image, java.lang.String text, Value fontIndex, int size, int fg, int bg, int x, int y, int space, int tightness, float angle, int antialias_steps)
          To draw a text string over an image using PostScript Type1 fonts
static ArrayValue ImageModule.imagepstext(QuercusImage image, java.lang.String text, Value fontIndex, int size, int fg, int bg, int x, int y, int space, int tightness, float angle, int antialias_steps)
          To draw a text string over an image using PostScript Type1 fonts
static ArrayValue ImageModule.imagepstext(QuercusImage image, java.lang.String text, Value fontIndex, int size, int fg, int bg, int x, int y, int space, int tightness, float angle, int antialias_steps)
          To draw a text string over an image using PostScript Type1 fonts
static ArrayValue ImageModule.imagepstext(QuercusImage image, java.lang.String text, Value fontIndex, int size, int fg, int bg, int x, int y, int space, int tightness, float angle, int antialias_steps)
          To draw a text string over an image using PostScript Type1 fonts
static boolean ImageModule.imagerotate(QuercusImage image, float angle, int backgroundColor, int ignoreTransparent)
          Rotate an image with a given angle
static void ImageModule.imagewbmp(QuercusImage image, Path filename, int threshhold)
          Output image to browser or file
static void ImageModule.imagewbmp(QuercusImage image, Path filename, int threshhold)
          Output image to browser or file
static boolean ImageModule.iptcembed(java.lang.String iptcdata, java.lang.String jpegFileName, int spool)
          Embe into single tags.
 

Uses of Optional in com.caucho.quercus.lib.jms
 

Method parameters in com.caucho.quercus.lib.jms with annotations of type Optional
static Value JMSQueue.__construct(Env env, java.lang.String queueName)
           
 Value JMSQueue.receive(Env env, long timeout)
           
 boolean JMSQueue.send(Value value, JMSQueue replyTo)
           
 

Uses of Optional in com.caucho.quercus.lib.json
 

Method parameters in com.caucho.quercus.lib.json with annotations of type Optional
static Value JsonModule.json_decode(Env env, StringValue s, boolean assoc)
          Takes a JSON-encoded string and returns a PHP value.
static StringValue JsonModule.json_encode(Env env, Value val, int options)
          Returns a JSON-encoded String.
 

Uses of Optional in com.caucho.quercus.lib.mail
 

Method parameters in com.caucho.quercus.lib.mail with annotations of type Optional
static boolean MailModule.mail(Env env, java.lang.String to, java.lang.String subject, StringValue message, java.lang.String additionalHeaders, java.lang.String additionalParameters)
          Send mail using JavaMail.
static boolean MailModule.mail(Env env, java.lang.String to, java.lang.String subject, StringValue message, java.lang.String additionalHeaders, java.lang.String additionalParameters)
          Send mail using JavaMail.
 

Uses of Optional in com.caucho.quercus.lib.mcrypt
 

Method parameters in com.caucho.quercus.lib.mcrypt with annotations of type Optional
static StringValue McryptModule.mcrypt_cbc(Env env, java.lang.String cipher, byte[] key, byte[] data, int mode, byte[] iv)
          Encrypt with cbc
static StringValue McryptModule.mcrypt_cfb(Env env, java.lang.String cipher, byte[] key, byte[] data, int mode, byte[] iv)
          Encrypt with cfb
static StringValue McryptModule.mcrypt_create_iv(Env env, int size, int randomMode)
          Creates the IV vector.
static StringValue McryptModule.mcrypt_decrypt(Env env, java.lang.String cipher, byte[] key, byte[] data, java.lang.String mode, byte[] iv)
          Decrypt
static StringValue McryptModule.mcrypt_ecb(Env env, java.lang.String cipher, byte[] key, byte[] data, int mode, byte[] iv)
          Encrypt with cfb
static StringValue McryptModule.mcrypt_encrypt(Env env, java.lang.String cipher, byte[] key, byte[] data, java.lang.String mode, byte[] iv)
          Encrypt
static int McryptModule.mcrypt_module_get_algo_block_size(Env env, java.lang.String cipher, java.lang.String libDir)
          Returns the block size for an algorithm.
static int McryptModule.mcrypt_module_get_algo_key_size(Env env, java.lang.String cipher, java.lang.String libDir)
          Returns the key size for an algorithm.
static Value McryptModule.mcrypt_module_get_supported_key_sizes(Env env, java.lang.String cipher, java.lang.String libDir)
          Returns the key size for an algorithm.
static boolean McryptModule.mcrypt_module_is_block_algorithm_mode(Env env, java.lang.String mode, java.lang.String libDir)
          Returns true for block modes
static boolean McryptModule.mcrypt_module_is_block_algorithm(Env env, java.lang.String cipher, java.lang.String libDir)
          Returns true for block algorithms
static boolean McryptModule.mcrypt_module_is_block_mode(Env env, java.lang.String mode, java.lang.String libDir)
          Returns true for block modes
static StringValue McryptModule.mcrypt_ofb(Env env, java.lang.String cipher, byte[] key, byte[] data, int mode, byte[] iv)
          Encrypt with ofb
 

Uses of Optional in com.caucho.quercus.lib.pdf
 

Method parameters in com.caucho.quercus.lib.pdf with annotations of type Optional
 boolean PDF.begin_document(java.lang.String fileName, java.lang.String optList)
           
 boolean PDF.begin_document(java.lang.String fileName, java.lang.String optList)
           
 boolean PDF.end_document(java.lang.String optList)
           
 boolean PDF.fit_image(PDFImage img, double x, double y, java.lang.String opt)
           
 java.lang.String PDF.get_parameter(java.lang.String name, double modifier)
          Returns the value for a parameter.
 double PDF.get_value(java.lang.String name, double modifier)
          Returns the value for a parameter.
 PDFImage PDF.load_image(java.lang.String type, Path file, java.lang.String optlist)
          open image
 PDFImage PDF.open_image_file(java.lang.String type, Path file, java.lang.String stringParam, int intParam)
          open image
 PDFImage PDF.open_image_file(java.lang.String type, Path file, java.lang.String stringParam, int intParam)
          open image
static boolean PDFModule.pdf_add_nameddest(Env env, PDF pdf, java.lang.String name, java.lang.String optlist)
          Creates a named destination
static boolean PDFModule.pdf_add_outline(Env env, PDF pdf, java.lang.String name, java.lang.String optlist)
          Creates an outline
static boolean PDFModule.pdf_begin_document(PDF pdf, java.lang.String fileName, java.lang.String optList)
          Starts the document.
static boolean PDFModule.pdf_begin_document(PDF pdf, java.lang.String fileName, java.lang.String optList)
          Starts the document.
static boolean PDFModule.pdf_begin_font(Env env, PDF pdf, java.lang.String fileName, double a, double b, double c, double d, double e, double f, java.lang.String optList)
          Starts a font definition
static boolean PDFModule.pdf_begin_page_ext(PDF pdf, double w, double h, java.lang.String optlist)
          Starts the page.
static boolean PDFModule.pdf_create_action(Env env, PDF pdf, java.lang.String type, java.lang.String optList)
          Creates an action.
static boolean PDFModule.pdf_create_annotation(Env env, PDF pdf, double llx, double lly, double urx, double ury, java.lang.String type, java.lang.String optList)
          Creates a rectangular annotation
static boolean PDFModule.pdf_create_bookmark(Env env, PDF pdf, java.lang.String text, java.lang.String optList)
          Creates a bookmark
static boolean PDFModule.pdf_create_field(Env env, PDF pdf, double llx, double lly, double urx, double ury, java.lang.String name, java.lang.String type, java.lang.String optList)
          Creates a form field.
static boolean PDFModule.pdf_create_fieldgroup(Env env, PDF pdf, java.lang.String name, java.lang.String optList)
          Creates a form field group.
static boolean PDFModule.pdf_create_gstate(Env env, PDF pdf, java.lang.String optList)
          Creates a graphics state
static boolean PDFModule.pdf_create_pvf(Env env, PDF pdf, java.lang.String filename, java.lang.String data, java.lang.String optList)
          Creates a virtual file
static boolean PDFModule.pdf_create_textflow(Env env, PDF pdf, java.lang.String text, java.lang.String optList)
          Creates a textflow object
static boolean PDFModule.pdf_define_layer(Env env, PDF pdf, java.lang.String name, java.lang.String optList)
          Creates a layer
static boolean PDFModule.pdf_end_document(PDF pdf, java.lang.String optlist)
          Completes the document.
static boolean PDFModule.pdf_end_page_ext(PDF pdf, java.lang.String optlist)
          Completes a page
static boolean PDFModule.pdf_fill_imageblock(Env env, PDF pdf, int page, java.lang.String blockname, int image, java.lang.String optlist)
          Fill the image with data.
static boolean PDFModule.pdf_fill_pdfblock(Env env, PDF pdf, int page, java.lang.String blockname, int contents, java.lang.String optlist)
          Fill the pdfblock with data.
static boolean PDFModule.pdf_fill_textblock(Env env, PDF pdf, int page, java.lang.String block, java.lang.String text, java.lang.String optlist)
          Fill the text with data.
static boolean PDFModule.pdf_fit_image(PDF pdf, PDFImage image, double x, double y, java.lang.String optlist)
          Place an image
static boolean PDFModule.pdf_fit_pdi_page(Env env, PDF pdf, int page, double x, double y, java.lang.String optlist)
          Place an embedded pdf
static boolean PDFModule.pdf_fit_textflow(Env env, PDF pdf, int textflow, double llx, double lly, double urx, double ury, java.lang.String optlist)
          Place a textflow object
static boolean PDFModule.pdf_fit_textline(Env env, PDF pdf, java.lang.String text, double x, double y, java.lang.String optlist)
          Place a line of text.
static java.lang.String PDFModule.pdf_get_parameter(PDF pdf, java.lang.String key, double modifier)
          Returns the named parameter.
static double PDFModule.pdf_get_value(PDF pdf, java.lang.String key, double modifier)
          Returns the named parameter.
static PDFFont PDFModule.pdf_load_font(PDF pdf, java.lang.String fontname, java.lang.String encoding, java.lang.String optlist)
          Search for a font.
static boolean PDFModule.pdf_load_iccprofile(Env env, PDF pdf, java.lang.String profileName, java.lang.String optlist)
          Search for an icc profile
static PDFImage PDFModule.pdf_load_image(PDF pdf, java.lang.String imageType, Path path, java.lang.String optlist)
          Loads an image
static boolean PDFModule.pdf_open_pdi_page(Env env, PDF pdf, int doc, int pagenumber, java.lang.String optlist)
          Opens an embedded page.
static boolean PDFModule.pdf_open_pdi(Env env, PDF pdf, java.lang.String filename, java.lang.String optlist)
          Opens an embedded document
static boolean PDFModule.pdf_process_pdi(Env env, PDF pdf, int doc, int page, java.lang.String optlist)
          Process an imported PDF document.
static boolean PDFModule.pdf_set_layer_dependency(Env env, PDF pdf, java.lang.String type, java.lang.String optlist)
          Define a relationship between layers.
static boolean PDFModule.pdf_setcolor(PDF pdf, java.lang.String type, java.lang.String colorspace, double c1, double c2, double c3, double c4)
          Sets the colorspace and color
static boolean PDFModule.pdf_setcolor(PDF pdf, java.lang.String type, java.lang.String colorspace, double c1, double c2, double c3, double c4)
          Sets the colorspace and color
static boolean PDFModule.pdf_setcolor(PDF pdf, java.lang.String type, java.lang.String colorspace, double c1, double c2, double c3, double c4)
          Sets the colorspace and color
static boolean PDFModule.pdf_shading_pattern(Env env, PDF pdf, int shading, java.lang.String optlist)
          Sets the shading pattern
static int PDFModule.pdf_shading(Env env, PDF pdf, java.lang.String type, double x1, double y1, double x2, double y2, double c1, double c2, double c3, double c4, java.lang.String optlist)
          Define a blend
static boolean PDFModule.pdf_show_boxed(Env env, PDF pdf, java.lang.String text, double x, double y, double width, double height, java.lang.String mode, java.lang.String feature)
          Output text in a box.
static boolean PDFModule.pdf_suspend_page(Env env, PDF pdf, java.lang.String optlist)
          Suspend the page.
 boolean PDF.setcolor(java.lang.String fstype, java.lang.String colorspace, double c1, double c2, double c3, double c4)
          Sets the color
 boolean PDF.setcolor(java.lang.String fstype, java.lang.String colorspace, double c1, double c2, double c3, double c4)
          Sets the color
 boolean PDF.setcolor(java.lang.String fstype, java.lang.String colorspace, double c1, double c2, double c3, double c4)
          Sets the color
 boolean PDF.setdashpattern(Env env, java.lang.String optlist)
          Sets the dashing
 boolean PDF.shading_pattern(Env env, int shading, java.lang.String optlist)
          Sets the shading pattern
 int PDF.shading(Env env, java.lang.String type, double x1, double y1, double x2, double y2, double c1, double c2, double c3, double c4, java.lang.String optlist)
          Define a blend
 boolean PDF.show_boxed(java.lang.String text, double x, double y, double width, double height, java.lang.String mode, java.lang.String feature)
          Displays text
 

Uses of Optional in com.caucho.quercus.lib.reflection
 

Method parameters in com.caucho.quercus.lib.reflection with annotations of type Optional
static Value Reflection.export(Env env, Reflector r, boolean isReturn)
           
static java.lang.String ReflectionExtension.export(Env env, java.lang.String name, boolean isReturn)
           
 Value ReflectionFunction.export(Env env, java.lang.String name, boolean isReturn)
           
static java.lang.String ReflectionClass.export(Env env, Value cls, boolean isReturn)
           
static java.lang.String ReflectionObject.export(Env env, Value object, boolean isReturn)
           
static java.lang.String ReflectionMethod.export(Env env, Value cls, java.lang.String name, boolean isReturn)
           
static java.lang.String ReflectionProperty.export(Env env, Value cls, java.lang.String name, boolean isReturn)
           
 Value ReflectionClass.getStaticPropertyValue(Env env, StringValue name, Value defaultV)
           
 Value ReflectionProperty.getValue(Env env, ObjectValue obj)
           
 Value ReflectionClass.newInstance(Env env, Value[] args)
           
 Value ReflectionClass.newInstanceArgs(Env env, ArrayValue args)
           
 

Uses of Optional in com.caucho.quercus.lib.regexp
 

Method parameters in com.caucho.quercus.lib.regexp with annotations of type Optional
static Value RegexpModule.ereg(Env env, Ereg regexp, StringValue string, Value regsV)
          Returns the index of the first match.
static Value RegexpModule.eregi(Env env, Eregi regexp, StringValue string, Value regsV)
          Returns the index of the first match.
static Value RegexpModule.preg_grep(Env env, Regexp regexp, ArrayValue input, int flag)
          Returns an array of all the values that matched the given pattern if the flag no flag is passed.
static Value RegexpModule.preg_match_all(Env env, Regexp regexp, StringValue subject, Value matchRef, int flags, int offset)
          Returns the number of full pattern matches or FALSE on error.
static Value RegexpModule.preg_match_all(Env env, Regexp regexp, StringValue subject, Value matchRef, int flags, int offset)
          Returns the number of full pattern matches or FALSE on error.
static Value RegexpModule.preg_match(Env env, Regexp regexp, StringValue subject, Value matchRef, int flags, int offset)
           
static Value RegexpModule.preg_match(Env env, Regexp regexp, StringValue subject, Value matchRef, int flags, int offset)
           
static Value RegexpModule.preg_match(Env env, Regexp regexp, StringValue subject, Value matchRef, int flags, int offset)
           
static StringValue RegexpModule.preg_quote(StringValue string, StringValue delim)
          Quotes regexp values
static Value RegexpModule.preg_replace_callback(Env env, Regexp regexp, Callable fun, Value subject, long limit, Value count)
          Loops through subject if subject is array of strings
static Value RegexpModule.preg_replace_callback(Env env, Regexp regexp, Callable fun, Value subject, long limit, Value count)
          Loops through subject if subject is array of strings
static Value RegexpModule.preg_replace_callback(Env env, Value regexpValue, Callable fun, Value subject, long limit, Value count)
          Loops through subject if subject is array of strings
static Value RegexpModule.preg_replace_callback(Env env, Value regexpValue, Callable fun, Value subject, long limit, Value count)
          Loops through subject if subject is array of strings
static Value RegexpModule.preg_replace(Env env, Regexp regexp, Value replacement, Value subject, long limit, Value count)
          Loops through subject if subject is array of strings
static Value RegexpModule.preg_replace(Env env, Regexp regexp, Value replacement, Value subject, long limit, Value count)
          Loops through subject if subject is array of strings
static Value RegexpModule.preg_replace(Env env, Value pattern, Value replacement, Value subject, long limit, Value count)
          Loops through subject if subject is array of strings
static Value RegexpModule.preg_replace(Env env, Value pattern, Value replacement, Value subject, long limit, Value count)
          Loops through subject if subject is array of strings
static Value RegexpModule.preg_split(Env env, Regexp regexp, StringValue string, long limit, int flags)
          Returns array of substrings or of arrays ([0] => substring [1] => offset) if PREG_SPLIT_OFFSET_CAPTURE is set
static Value RegexpModule.preg_split(Env env, Regexp regexp, StringValue string, long limit, int flags)
          Returns array of substrings or of arrays ([0] => substring [1] => offset) if PREG_SPLIT_OFFSET_CAPTURE is set
static Value RegexpModule.split(Env env, Ereg regexp, StringValue string, long limit)
          Returns an array of strings produces from splitting the passed string around the provided pattern.
static Value RegexpModule.spliti(Env env, Eregi regexp, StringValue string, long limit)
          Returns an array of strings produces from splitting the passed string around the provided pattern.
 

Uses of Optional in com.caucho.quercus.lib.resin
 

Method parameters in com.caucho.quercus.lib.resin with annotations of type Optional
 MBean MBeanServer.lookup(Env env, java.lang.String name)
          Perform a jmx lookup to retrieve an MBean object.
 

Constructor parameters in com.caucho.quercus.lib.resin with annotations of type Optional
MBeanServer(java.lang.String serverId)
          Create an MBeanServer that connects to a remote server.
 

Uses of Optional in com.caucho.quercus.lib.session
 

Method parameters in com.caucho.quercus.lib.session with annotations of type Optional
 Value SessionModule.session_cache_expire(Env env, Value newValue)
           
 Value SessionModule.session_cache_limiter(Env env, Value newValue)
          Returns and/or sets the value of session.cache_limiter, affecting the cache related headers that are sent as a result of a call to SessionModule.session_start(Env).
static java.lang.String SessionModule.session_id(Env env, java.lang.String id)
          Returns the session id
 Value SessionModule.session_module_name(Env env, java.lang.String newValue)
          Returns the object's class name
 Value SessionModule.session_name(Env env, java.lang.String newValue)
          Returns the object's class name
static boolean SessionModule.session_regenerate_id(Env env, boolean deleteOld)
          Regenerates the session id.
 Value SessionModule.session_save_path(Env env, java.lang.String newValue)
          Returns the session's save path
 Value SessionModule.session_set_cookie_params(Env env, long lifetime, Value path, Value domain, Value isSecure, Value isHttpOnly)
          Sets the session cookie parameters
 Value SessionModule.session_set_cookie_params(Env env, long lifetime, Value path, Value domain, Value isSecure, Value isHttpOnly)
          Sets the session cookie parameters
 Value SessionModule.session_set_cookie_params(Env env, long lifetime, Value path, Value domain, Value isSecure, Value isHttpOnly)
          Sets the session cookie parameters
 Value SessionModule.session_set_cookie_params(Env env, long lifetime, Value path, Value domain, Value isSecure, Value isHttpOnly)
          Sets the session cookie parameters
 

Uses of Optional in com.caucho.quercus.lib.simplexml
 

Method parameters in com.caucho.quercus.lib.simplexml with annotations of type Optional
static Value SimpleXMLElement.__construct(Env env, Value data, int options, boolean dataIsUrl, Value namespaceV, boolean isPrefix)
          Returns a new instance based on the xml from 'data'.
static Value SimpleXMLElement.__construct(Env env, Value data, int options, boolean dataIsUrl, Value namespaceV, boolean isPrefix)
          Returns a new instance based on the xml from 'data'.
static Value SimpleXMLElement.__construct(Env env, Value data, int options, boolean dataIsUrl, Value namespaceV, boolean isPrefix)
          Returns a new instance based on the xml from 'data'.
static Value SimpleXMLElement.__construct(Env env, Value data, int options, boolean dataIsUrl, Value namespaceV, boolean isPrefix)
          Returns a new instance based on the xml from 'data'.
 void SimpleXMLElement.addAttribute(Env env, java.lang.String name, StringValue value, java.lang.String namespace)
          Adds an attribute to this node.
 Value SimpleXMLElement.addChild(Env env, java.lang.String name, java.lang.String value, Value namespaceV)
          Adds a child to this node.
 Value SimpleXMLElement.asXML(Env env, Value filename)
          Converts node tree to a valid xml string.
 Value SimpleXMLElement.attributes(Env env, Value namespaceV, boolean isPrefix)
          Returns the attributes of this node.
 Value SimpleXMLElement.attributes(Env env, Value namespaceV, boolean isPrefix)
          Returns the attributes of this node.
 Value SimpleXMLElement.children(Env env, Value namespaceV, boolean isPrefix)
          Returns all the children of this node, including the attributes of this node.
 Value SimpleXMLElement.children(Env env, Value namespaceV, boolean isPrefix)
          Returns all the children of this node, including the attributes of this node.
 Value SimpleXMLElement.getDocNamespaces(Env env, boolean isRecursive)
          Alias of getNamespaces().
 Value SimpleXMLElement.getNamespaces(Env env, boolean isRecursive)
          Returns the namespaces used in this document.
 Value SimpleXMLModule.simplexml_load_file(Env env, StringValue file, java.lang.String className, int options, Value namespaceV, boolean isPrefix)
           
 Value SimpleXMLModule.simplexml_load_file(Env env, StringValue file, java.lang.String className, int options, Value namespaceV, boolean isPrefix)
           
 Value SimpleXMLModule.simplexml_load_file(Env env, StringValue file, java.lang.String className, int options, Value namespaceV, boolean isPrefix)
           
 Value SimpleXMLModule.simplexml_load_file(Env env, StringValue file, java.lang.String className, int options, Value namespaceV, boolean isPrefix)
           
 Value SimpleXMLModule.simplexml_load_string(Env env, Value data, java.lang.String className, int options, Value namespaceV, boolean isPrefix)
           
 Value SimpleXMLModule.simplexml_load_string(Env env, Value data, java.lang.String className, int options, Value namespaceV, boolean isPrefix)
           
 Value SimpleXMLModule.simplexml_load_string(Env env, Value data, java.lang.String className, int options, Value namespaceV, boolean isPrefix)
           
 Value SimpleXMLModule.simplexml_load_string(Env env, Value data, java.lang.String className, int options, Value namespaceV, boolean isPrefix)
           
 

Uses of Optional in com.caucho.quercus.lib.spl
 

Method parameters in com.caucho.quercus.lib.spl with annotations of type Optional
 void ArrayIterator.asort(ArrayValue array, long sortFlag)
           
 void ArrayObject.asort(long sortFlag)
           
static Value SplModule.class_implements(Env env, Value obj, boolean autoload)
           
static Value SplModule.class_parents(Env env, Value obj, boolean autoload)
           
 java.lang.String SplFileInfo.getBasename(java.lang.String suffix)
           
 SplFileInfo SplFileInfo.getFileInfo(java.lang.String className)
           
 SplFileInfo SplFileInfo.getPathInfo(java.lang.String className)
           
 void ArrayIterator.ksort(long sortFlag)
           
 void ArrayObject.ksort(long sortFlag)
           
 SplFileObject SplFileInfo.openFile(java.lang.String mode, boolean isUseIncludePath, Value context)
           
 SplFileObject SplFileInfo.openFile(java.lang.String mode, boolean isUseIncludePath, Value context)
           
 SplFileObject SplFileInfo.openFile(java.lang.String mode, boolean isUseIncludePath, Value context)
           
 void SplFileInfo.setFileClass(java.lang.String className)
           
 void SplFileInfo.setInfoClass(java.lang.String className)
           
static java.lang.String SplModule.spl_autoload_extensions(Env env, java.lang.String extensions)
           
static boolean SplModule.spl_autoload_register(Env env, Callable fun, boolean isThrowErrors, boolean isPrepend)
           
static boolean SplModule.spl_autoload_register(Env env, Callable fun, boolean isThrowErrors, boolean isPrepend)
           
static boolean SplModule.spl_autoload_register(Env env, Callable fun, boolean isThrowErrors, boolean isPrepend)
           
static void SplModule.spl_autoload(Env env, java.lang.String className, java.lang.String extensions)
           
 void ArrayIterator.uasort(Callback func, long sortFlag)
           
 void ArrayObject.uksort(Callable func, long sortFlag)
           
 void ArrayIterator.uksort(Callback func, long sortFlag)
           
 

Constructor parameters in com.caucho.quercus.lib.spl with annotations of type Optional
ArrayIterator(Env env, Value qThis, Value value, int flags)
           
ArrayIterator(Env env, Value qThis, Value value, int flags)
           
ArrayObject(Env env, Value value, int flags, java.lang.String iteratorClassName)
           
ArrayObject(Env env, Value value, int flags, java.lang.String iteratorClassName)
           
ArrayObject(Env env, Value value, int flags, java.lang.String iteratorClassName)
           
FilesystemIterator(Env env, StringValue fileName, int flags)
           
RecursiveDirectoryIterator(Env env, StringValue fileName, int flags)
           
RecursiveIteratorIterator(Env env, Iterator iterator, int mode, int flags)
           
RecursiveIteratorIterator(Env env, Iterator iterator, int mode, int flags)
           
SplFileObject(Env env, StringValue fileName, java.lang.String mode, boolean isUseIncludePath, Value contextV)
           
SplFileObject(Env env, StringValue fileName, java.lang.String mode, boolean isUseIncludePath, Value contextV)
           
SplFileObject(Env env, StringValue fileName, java.lang.String mode, boolean isUseIncludePath, Value contextV)
           
 

Uses of Optional in com.caucho.quercus.lib.string
 

Method parameters in com.caucho.quercus.lib.string with annotations of type Optional
static StringValue StringModule.chop(Env env, StringValue str, java.lang.String charset)
          Alias of rtrim.
static java.lang.String StringModule.chunk_split(java.lang.String body, int chunkLen, java.lang.String end)
          Splits a string into chunks
static java.lang.String StringModule.chunk_split(java.lang.String body, int chunkLen, java.lang.String end)
          Splits a string into chunks
static Value StringModule.count_chars(StringValue data, int mode)
          Returns an array of information about the characters.
static java.lang.String StringModule.crypt(java.lang.String string, java.lang.String salt)
           
static Value StringModule.explode(Env env, StringValue separator, StringValue string, long limit)
          Explodes a string into an array
static Value StringModule.implode(Env env, Value glueV, Value piecesV)
          implodes an array into a string
static StringValue StringModule.ltrim(Env env, StringValue string, java.lang.String characters)
          Removes leading whitespace.
static Value StringModule.md5_file(Env env, Path source, boolean rawOutput)
          returns the md5 hash
static Value StringModule.md5(Env env, java.io.InputStream is, boolean rawOutput)
          returns the md5 hash
static java.lang.String StringModule.number_format(Env env, double value, int decimals, Value pointValue, Value groupValue)
          Returns a formatted number.
static java.lang.String StringModule.number_format(Env env, double value, int decimals, Value pointValue, Value groupValue)
          Returns a formatted number.
static java.lang.String StringModule.number_format(Env env, double value, int decimals, Value pointValue, Value groupValue)
          Returns a formatted number.
static Value StringModule.parse_str(Env env, StringValue str, Value ref)
          Parses the string as a query string.
static StringValue StringModule.rtrim(Env env, StringValue string, java.lang.String characters)
          Removes trailing whitespace.
static Value StringModule.sha1_file(Env env, Path source, boolean rawOutput)
          returns the md5 hash
static Value StringModule.sha1(Env env, java.lang.String source, boolean rawOutput)
          returns the md5 hash
static Value StringModule.sscanf(Env env, StringValue string, StringValue format, Value[] args)
          scans a string
static Value StringModule.sscanfOld(Env env, StringValue string, StringValue format, Value[] args)
          scans a string
static Value StringModule.str_ireplace(Env env, Value search, Value replace, Value subject, Value count)
          replaces substrings.
static StringValue StringModule.str_pad(StringValue string, int length, java.lang.String pad, int type)
          Pads strings
static StringValue StringModule.str_pad(StringValue string, int length, java.lang.String pad, int type)
          Pads strings
static Value StringModule.str_replace(Env env, Value search, Value replace, Value subject, Value count)
          replaces substrings.
static Value StringModule.str_split(StringValue string, int chunk)
          split into an array
static Value StringModule.str_word_count(StringValue string, int format, java.lang.String additionalWordCharacters)
           
static Value StringModule.str_word_count(StringValue string, int format, java.lang.String additionalWordCharacters)
           
static Value StringModule.strcspn(StringValue string, StringValue characters, int offset, int length)
          Finds the number of initial characters in string that do not match one of the characters in characters
static Value StringModule.strcspn(StringValue string, StringValue characters, int offset, int length)
          Finds the number of initial characters in string that do not match one of the characters in characters
static StringValue StringModule.strip_tags(Env env, StringValue string, Value allowTags)
          Removes tags from a string.
static Value StringModule.stripos(Env env, StringValue haystack, Value needleV, int offset)
          Returns the position of a substring, testing case insensitive.
static Value StringModule.strpos(Env env, StringValue haystack, Value needleV, int offset)
          Returns the position of a substring.
static Value StringModule.strripos(Env env, java.lang.String haystack, Value needleV, Value offsetV)
          Returns the position of a substring, testing case-insensitive.
static Value StringModule.strrpos(Env env, StringValue haystack, Value needleV, Value offsetV)
          Returns the position of a substring.
static Value StringModule.strspn(StringValue string, StringValue characters, int offset, int length)
          Finds the number of initial characters in string that match one of the characters in characters
static Value StringModule.strspn(StringValue string, StringValue characters, int offset, int length)
          Finds the number of initial characters in string that match one of the characters in characters
static Value StringModule.strtok(Env env, StringValue string1, Value string2)
          Split a string into tokens using any character in another string as a delimiter.
static StringValue StringModule.strtr(Env env, StringValue string, Value fromV, StringValue to)
          Translates characters in a string to target values.
static Value StringModule.substr_compare(Env env, StringValue mainStr, StringValue str, int offset, Value lenV, boolean isCaseInsensitive)
           
static Value StringModule.substr_compare(Env env, StringValue mainStr, StringValue str, int offset, Value lenV, boolean isCaseInsensitive)
           
static Value StringModule.substr_count(Env env, StringValue haystackV, StringValue needleV, int offset, int length)
           
static Value StringModule.substr_count(Env env, StringValue haystackV, StringValue needleV, int offset, int length)
           
static Value StringModule.substr_replace(Env env, Value subjectV, StringValue replacement, Value startV, Value lengthV)
          Replaces a substring with a replacement
static Value StringModule.substr(Env env, StringValue string, int start, Value lenV)
          Returns a substring
static Value StringModule.trim(Env env, StringValue string, java.lang.String characters)
          Removes leading and trailing whitespace.
static Value StringModule.wordwrap(Env env, Value value, Value widthV, Value breakV, Value cutV)
          Wraps a string to the given number of characters.
static Value StringModule.wordwrap(Env env, Value value, Value widthV, Value breakV, Value cutV)
          Wraps a string to the given number of characters.
static Value StringModule.wordwrap(Env env, Value value, Value widthV, Value breakV, Value cutV)
          Wraps a string to the given number of characters.
 

Uses of Optional in com.caucho.quercus.lib.xml
 

Method parameters in com.caucho.quercus.lib.xml with annotations of type Optional
static boolean XmlModule.libxml_use_internal_errors(Env env, Value isKeepErrors)
           
 BooleanValue XmlReader.next(java.lang.String localname)
           
 boolean XMLWriter.startDocument(Env env, StringValue version, StringValue encoding, StringValue standalone)
          Starts the document
 boolean XMLWriter.startDocument(Env env, StringValue version, StringValue encoding, StringValue standalone)
          Starts the document
 boolean XMLWriter.startDocument(Env env, StringValue version, StringValue encoding, StringValue standalone)
          Starts the document
 boolean XMLWriter.startDTD(StringValue name, StringValue publicId, StringValue systemId)
          Starts a DTD
 boolean XMLWriter.startDTD(StringValue name, StringValue publicId, StringValue systemId)
          Starts a DTD
 boolean XMLWriter.writeDTD(Env env, StringValue name, StringValue publicId, StringValue systemId, StringValue subset)
          Writes a DTD
 boolean XMLWriter.writeDTD(Env env, StringValue name, StringValue publicId, StringValue systemId, StringValue subset)
          Writes a DTD
 boolean XMLWriter.writeDTD(Env env, StringValue name, StringValue publicId, StringValue systemId, StringValue subset)
          Writes a DTD
 boolean XMLWriter.writeElement(Env env, StringValue name, StringValue content)
          Writes a complete element
 boolean XMLWriter.writeElementNS(Env env, StringValue prefix, StringValue name, StringValue uri, StringValue content)
          Writes a complete element
 int Xml.xml_parse_into_struct(Env env, StringValue data, Value valsV, Value indexV)
          Parses data into 2 parallel array structures.
 int XmlModule.xml_parse_into_struct(Env env, Xml parser, StringValue data, Value valueArray, Value indexArray)
           
 int Xml.xml_parse(Env env, StringValue data, boolean isFinal)
          xml_parse will keep accumulating "data" until either is_final is true or omitted
 int XmlModule.xml_parse(Env env, Xml parser, StringValue data, boolean isFinal)
           
 Xml XmlModule.xml_parser_create_ns(Env env, java.lang.String outputEncoding, java.lang.String separator)
          XXX: Should we return warning if separator is anything but ":"???
 Xml XmlModule.xml_parser_create_ns(Env env, java.lang.String outputEncoding, java.lang.String separator)
          XXX: Should we return warning if separator is anything but ":"???
 Xml XmlModule.xml_parser_create(Env env, java.lang.String outputEncoding)
          returns a new Xml Parser
static boolean XMLWriterModule.xmlwriter_start_document(Env env, XMLWriter w, StringValue version, StringValue encoding, StringValue standalone)
          Starts the document
static boolean XMLWriterModule.xmlwriter_start_document(Env env, XMLWriter w, StringValue version, StringValue encoding, StringValue standalone)
          Starts the document
static boolean XMLWriterModule.xmlwriter_start_document(Env env, XMLWriter w, StringValue version, StringValue encoding, StringValue standalone)
          Starts the document
static boolean XMLWriterModule.xmlwriter_start_dtd(XMLWriter w, StringValue name, StringValue publicId, StringValue systemId)
          Starts a DTD
static boolean XMLWriterModule.xmlwriter_start_dtd(XMLWriter w, StringValue name, StringValue publicId, StringValue systemId)
          Starts a DTD
static boolean XMLWriterModule.xmlwriter_write_dtd(Env env, XMLWriter w, StringValue name, StringValue publicId, StringValue systemId, StringValue subset)
          Writes a DTD
static boolean XMLWriterModule.xmlwriter_write_dtd(Env env, XMLWriter w, StringValue name, StringValue publicId, StringValue systemId, StringValue subset)
          Writes a DTD
static boolean XMLWriterModule.xmlwriter_write_dtd(Env env, XMLWriter w, StringValue name, StringValue publicId, StringValue systemId, StringValue subset)
          Writes a DTD
static boolean XMLWriterModule.xmlwriter_write_element_ns(Env env, XMLWriter w, StringValue prefix, StringValue name, StringValue uri, StringValue content)
          Writes a complete element
static boolean XMLWriterModule.xmlwriter_write_element(Env env, XMLWriter w, StringValue name, StringValue content)
          Writes a complete element
 

Constructor parameters in com.caucho.quercus.lib.xml with annotations of type Optional
XmlReader(java.lang.String[] string)
          Default constructor.
 

Uses of Optional in com.caucho.quercus.lib.zip
 

Method parameters in com.caucho.quercus.lib.zip with annotations of type Optional
 boolean ZipModule.zip_entry_open(Env env, ZipDirectory directory, QuercusZipEntry entry, java.lang.String mode)
          Opens entry for decompression.
 StringValue QuercusZipEntry.zip_entry_read(Env env, int length)
          Reads and decompresses entry's compressed data.
 StringValue ZipModule.zip_entry_read(Env env, QuercusZipEntry entry, int length)
          Reads and decompresses entry's compressed data.
 

Uses of Optional in com.caucho.quercus.lib.zlib
 

Method parameters in com.caucho.quercus.lib.zlib with annotations of type Optional
 Value ZlibModule.gzcompress(Env env, java.io.InputStream data, int level)
          compresses data using zlib
 Value ZlibModule.gzdeflate(Env env, java.io.InputStream data, int level)
           
 Value ZlibModule.gzencode(Env env, java.io.InputStream is, int level, int encodingMode)
          Compresses data using the Deflate algorithm, output is compatible with gzwrite's output
 Value ZlibModule.gzencode(Env env, java.io.InputStream is, int level, int encodingMode)
          Compresses data using the Deflate algorithm, output is compatible with gzwrite's output
static ArrayValue ZlibModule.gzfile(Env env, StringValue fileName, boolean useIncludePath)
           
static Value ZlibModule.gzgetss(Env env, BinaryInput is, int length, Value allowedTags)
          Reads a line from the zip stream, stripping tags.
 StringValue Zlib.gzgetss(Env env, int length, StringValue allowedTags)
           
 Value ZlibModule.gzinflate(Env env, java.io.InputStream data, int length)
           
static BinaryStream ZlibModule.gzopen(Env env, StringValue fileName, java.lang.String mode, boolean useIncludePath)
           
 int ZlibModule.gzputs(Env env, BinaryOutput os, java.io.InputStream is, int length)
           
 int Zlib.gzputs(Env env, java.io.InputStream is, int length)
          alias of gzwrite
 int ZlibModule.gzseek(BinaryStream binaryStream, long offset, int whence)
          Set stream position to the offset
 Value ZlibModule.gzuncompress(Env env, java.io.InputStream is, long length)
           
static int ZlibModule.gzwrite(BinaryOutput os, java.io.InputStream is, int length)
          Writes a string to the gzip stream.
 int Zlib.gzwrite(Env env, java.io.InputStream is, int length)
          Reads from the input and writes to the gzip stream
static Value ZlibModule.readgzfile(Env env, StringValue fileName, boolean useIncludePath)
          outputs uncompressed bytes directly to browser, writes a warning message if an error has occured Note: PHP5 is supposed to print an error message but it doesn't do it