|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-08-24 13:59 UTC] philip@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 15:00:02 2025 UTC |
Description: ------------ Something like : <methodsynopsis> <type>void</type> <methodname>SDO_Sequence::insert</methodname> <methodparam> <type>mixed</type> <parameter>value</parameter> </methodparam> <methodparam choice="opt"> <type>int</type> <parameter>sequenceIndex</parameter> </methodparam> <methodparam choice="opt"> <type>mixed</type> <parameter>propertyIdentifier</parameter> </methodparam> </methodsynopsis> Will appear "void ( mixed [, int [, mixed ]])" We have to put the type and parameter on the same line to have a correct output. So <methodsynopsis> <type>void</type><methodname>SDO_Sequence::insert</methodname> <methodparam> <type>mixed</type><parameter>value</parameter> </methodparam> <methodparam choice="opt"> <type>int</type><parameter>sequenceIndex</parameter> </methodparam> <methodparam choice="opt"> <type>mixed</type><parameter>propertyIdentifier</parameter> </methodparam> </methodsynopsis> Displays : "void SDO_Sequence::insert(mixed $value [, int $sequenceIndex [, mixed $propertyIdentifier]])"