Sponsored Content
Full Discussion: A Look Around the Forumverse
The Lounge What is on Your Mind? A Look Around the Forumverse Post 303030037 by vbe on Tuesday 5th of February 2019 03:55:56 AM
Old 02-05-2019
I agree...

But for me, I believe the visual aspect doesnt prime on ease to use when you are a technician or a developper in need of help o solution, its more how easy it is to find what you are looking for and how fast you find the good information, here I think we are superior to other forums, as our mods wont let pass things non relevant, either help in correcting the code proposed, or after suggest a better alternative and more, tag as solved and later close the thread so it does not go on and on and deviates from its original topic. Finding the good information here is far the fastest if not the case then the other forums show up, for me that is more due to how the originator titled his thread and how relevant it is with in fact the true thread subject, and here I see perhaps a possible amelioration, we mods should think if the title is relevant with the subject/issue... and if not quite or ambiguous should change the title and not just correct typos... I do it sometimes but only when totally OT or weird as not sure it the owner will find himself with the new title... ouch late for work...
All the best
These 3 Users Gave Thanks to vbe For This Post:
 
CLI_SET_PROCESS_TITLE(3)						 1						  CLI_SET_PROCESS_TITLE(3)

cli_set_process_title - Sets the process title

SYNOPSIS
bool cli_set_process_title (string $title) DESCRIPTION
Sets the process title visible in tools such as top and ps. This function is available only in CLI mode. PARAMETERS
o $title - The new title. RETURN VALUES
Returns TRUE on success or FALSE on failure. ERRORS
/EXCEPTIONS An E_WARNING will be generated if the operating system is unsupported. EXAMPLES
Example #1 cli_set_process_title(3) example <?php $title = "My Amazing PHP Script"; $pid = getmypid(); // you can use this to see your process title in ps if (!cli_set_process_title($title)) { echo "Unable to set process title for PID $pid... "; exit(1); } else { echo "The process title '$title' for PID $pid has been set for your process! "; sleep(5); } ?> SEE ALSO
cli_get_process_title(3), setproctitle(3). PHP Documentation Group CLI_SET_PROCESS_TITLE(3)
All times are GMT -4. The time now is 12:30 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy