In the following foreach loop, how would I access the value of $url?
foreach ( $this->sessions as $i => $url ) curl_multi_add_handle( $mh, $this->sessions[$i] ); … I am trying to understand how that value for the url would be accessed for each particular cycle of the loop.
$urlwithin the loop, what's the issue?