Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

What input functions can I use in TIO's PHP?

+1
−0

Try It Online! is an online interpreter for many supported languages, including PHP. I'm trying to solve coding challenges using the language, specifically "Hello, {name}!".

In PHP, you can literally add text outside of the script (<?php ?>) and it will output, which is what I did in the codeblock below. Currently, I'm struggling finding the input function for PHP. readline() and fscanf() aren't options for TIO:

Hello, <?php
$a=readline();
echo $a;
?>!

Try it online!

I'm not giving up yet, because I know for a fact that someone knows how can I set prompt for the program. So... how?

Question: What input functions work in PHP running from TIO?

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

I don't know all the ways you could process input data from within a PHP script in TIO, but i know this one... (1 comment)

1 answer

+1
−0

You could use fgets to read from STDIN.

And to print the message, just use the short tag (<?= whatever, which is a shorthand to <?php echo whatever; ?>):

<?='Hello, '.fgets(STDIN).'!';

Try it online!

Of course you could also do:

<?php
echo 'Hello, '.fgets(STDIN).'!';

And there are also other functions you could use, such as file_get_contents("php://stdin") or stream_get_contents(STDIN), but as you said you're code-golfing, I guess the first option would be preferable[1].


  1. I'm not a code-golfer, so not sure if that's the shortest possible way. ↩︎

History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

General (1 comment)

Sign up to answer this question »