PropertyValue
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
http://www.w3.org/ns/prov#value
  • In your case where you want all descriptors to be pipes you should always use:<?php$descriptorspec = array( 0 => array('pipe', 'r'), // stdin 1 => array('pipe', 'w'), // stdout 2 => array('pipe', 'w') // stderr);?>The examples below where stderr is opened as 'r' is a mistake.I would like to see examples of using higher descriptor numbers than 2.
http://www.w3.org/ns/prov#wasQuotedFrom
  • php.net