Thanks David<br><br><div class="gmail_quote">On Fri, Nov 25, 2011 at 9:50 AM, David Hamm <span dir="ltr">&lt;<a href="mailto:ale@spinnerdog.com">ale@spinnerdog.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Oh, good point..   Sorry about that.<br>
<br>
 I found this, on the php docs site in a user comment, after posting here.<br>
::shrug,<br>
<br>
&lt;?php<br>
  function readline_callback($ret)<br>
  {<br>
    global $prompt_answer, $prompt_finished;<br>
    $prompt_answer = $ret;<br>
    $prompt_finished = TRUE;<br>
    readline_callback_handler_remove();<br>
  }<br>
<br>
  readline_callback_handler_install(&#39;Enter some text&gt; &#39;,<br>
                                    &#39;readline_callback&#39;);<br>
<br>
  $prefill = &#39;foobar&#39;;<br>
  for ($i = 0; $i &lt; strlen($prefill); $i++)<br>
  {<br>
    readline_info(&#39;pending_input&#39;, substr($prefill, $i, 1));<br>
    readline_callback_read_char();<br>
  }<br>
<br>
  $prompt_finished = FALSE;<br>
  $prompt_answer = FALSE;<br>
  while (!$prompt_finished)<br>
    readline_callback_read_char();<br>
  echo &#39;You wrote: &#39; . $prompt_answer . &quot;\n&quot;;<br>
?&gt;<br>
<br>
On Thursday, November 17, 2011 08:42:04 pm Richard Bronosky wrote:<br>
&gt; It&#39;s customary to share the solution so that you are a contributor to the<br>
&gt; community, not just a consumer. Imagine how frustrating it will be when our<br>
&gt; mailman archive turns up as a Google search result for some other person<br>
&gt; having the same problem, and instead of finding the answer they just get<br>
&gt; teased with the fact that you found it and didn&#39;t share.<br>
&gt;<br>
&gt; On Nov 17, 2011 8:07 PM, &quot;David Hamm&quot; &lt;<a href="mailto:ale@spinnerdog.com">ale@spinnerdog.com</a>&gt; wrote:<br>
&gt; &gt; Never mind.  I found what I needed.<br>
&gt; &gt;<br>
&gt; &gt; thanks<br>
&gt; &gt;<br>
&gt; &gt; On Thursday, November 17, 2011 04:07:41 pm David Hamm wrote:<br>
&gt; &gt; &gt; Hi,<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; In php-cli, I&#39;m looking for a way to allow a terminal user to edit a<br>
&gt; &gt; &gt; file name before saving it.  The program should prompt the user like<br>
&gt; &gt; &gt; this.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Save file as:  yourfile.txt<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; And the user should be able to edit the name of the file.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; I&#39;ve looked at readline() but readline doesn&#39;t let you set an<br>
&gt; &gt; &gt; initial/default value.  I&#39;ve also tried to find a way to push the<br>
&gt; &gt; &gt; default value into the keyboard buffer but no luck.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Does anyone have any ideas?<br>
&gt; &gt; &gt; _______________________________________________<br>
&gt; &gt; &gt; Ale mailing list<br>
&gt; &gt; &gt; <a href="mailto:Ale@ale.org">Ale@ale.org</a><br>
&gt; &gt; &gt; <a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
&gt; &gt; &gt; See JOBS, ANNOUNCE and SCHOOLS lists at<br>
&gt; &gt; &gt; <a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
&gt; &gt;<br>
&gt; &gt; _______________________________________________<br>
&gt; &gt; Ale mailing list<br>
&gt; &gt; <a href="mailto:Ale@ale.org">Ale@ale.org</a><br>
&gt; &gt; <a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
&gt; &gt; See JOBS, ANNOUNCE and SCHOOLS lists at<br>
&gt; &gt; <a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
_______________________________________________<br>
Ale mailing list<br>
<a href="mailto:Ale@ale.org">Ale@ale.org</a><br>
<a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
See JOBS, ANNOUNCE and SCHOOLS lists at<br>
<a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
</blockquote></div><br><br clear="all"><br>-- <br>This Apt Has Super Cow Powers - <a href="http://sourcefreedom.com">http://sourcefreedom.com</a><br>