Tagged Questions

Simple function outputting text. Exists in script languages.

learn more… | top users | synonyms

25
votes
1answer
355 views

Reference: Comparing PHP's print and echo

Stack Overflow has many questions asking about PHP's print and echo keyword usage. The purpose of this post is to provide a canonical reference question and answer about PHP's print and echo ...
20
votes
7answers
4k views

How are echo and print different in PHP? [closed]

Possible Duplicate: Reference: Comparing PHP's print and echo Is there any major and fundamental difference between these two functions in PHP?
17
votes
3answers
16k views

With Bash Scripting, how can I suppress all output from a command?

I have a bash script that runs a program with parameters. That program outputs some status (doing this, doing that...). There is no option for this program to be quiet. How can I prevent the script ...
10
votes
3answers
5k views

What's the difference between echo, print, and print_r in PHP?

I use echo and print_r much, and almost never use print. I feel echo is a macro, and print_r is an alias of var_dump. But that's not the standard way to explain the differences.
10
votes
2answers
431 views

If I echo a statement and no one hears it, does it ever get echoed? (PHP cron job question)

So I have a script that I debug with a bunch of echo statements. This is run every 3 minutes on my server by cron, and I sometimes leave the echo statements in there. They're not going to a browser, ...
10
votes
5answers
5k views

How do you strip quotes out of an ECHO'ed string in a Windows batch file?

I have a Windows batch file I'm creating, but I have to ECHO a large complex string, so I'm having to put double quotes on either end. The problem is that the quotes are also being ECHOed to the file ...
9
votes
6answers
660 views

php echo vs open&close tag

Just to clarify: The issues "echo vs print" and "double quotes vs single quotes" are perfectly understood, this is about another thing: Are there any reasons why one would prefer: echo ...
9
votes
4answers
10k views

PHP echo vs PHP short tags

Are they equal in safeness? I was informed that using <?=$function_here?> was less safe, and that it slows down page load. So I am now strictly biased to using echo. I just wanted to know ...
9
votes
7answers
38k views

Easiest way to echo HTML in PHP?

I want to conditionally output HTML to generate a page, so what's the easiest way to echo multiline snippets of HTML in PHP 4+? Would I need to use a template framework like Smarty? echo ...
9
votes
5answers
9k views

How can I enter a password using Perl and replace the characters with '*'?

I have a Perl script that requires the user to enter a password. How can I echo only '*' in place of the character that the user types, as they type it? I'm using Windows XP/Vista.
8
votes
1answer
250 views

Change [exec] label in output for Ant <exec> task

I am using Ant's <parallel> task to perform multiple simultaneous targets that use <exec> tasks, but it's difficult to read the output because it is interleaved. Is there any way to change ...
7
votes
6answers
114 views

echo accepts numbers?

I'm relatively new to programming and am still unsure of myself when reading language documentation. The description of PHP's echo from php.net is: void echo ( string $arg1 [, string $... ] ) Thus ...
7
votes
5answers
2k views

Pros and cons of commenting systems and APIs (Disqus vs Facebook Comments vs Intense Debate vs Echo)?

With the release of the new Facebook commenting module, could people please share their experiences with the various commenting systems -- specifically, Disqus, Echo, Intense Debate, and Facebook ...
7
votes
4answers
452 views

'echo' or drop out of 'programming' write HTML then start PHP code again

For the most part, when I want to display some HTML code to be actually rendered I would use a 'close PHP' tag, write the HTML, then open the PHP again. eg <?php // some php code ?> ...
7
votes
1answer
2k views

Acoustic Echo Cancellation (AEC) with Speex and DirectSound

I am trying to perform Acoustic Echo Cancellation (AEC) with the Speex codec library. According to the Speex documentation, I need to perform two calls: speex_echo_playback(echo_state, echo_frame); ...
6
votes
4answers
263 views

PHP Speed - Many Echos vs Building a String

Wondering if anyone knows if either of these methods would produce an output faster: Method 1 for ($i=1;$i<99999;$i++) { echo $i, '<br>'; } or Method 2 for ($i=1;$i<99999;$i++) { ...
6
votes
1answer
379 views

Issue with echo and tab in Bash

I would like to know if its possible to do formatting using echo in shell scripting. Here is a small code snippet which is giving me the problem echo -en "\rFileName : $filename : $index ...
6
votes
7answers
11k views

Echo spaces in bash script

How do I echo one or more tab characters using a bash script? When I run this code res=' 'x # res = "\t\tx" echo '['$res']' # expect [\t\tx] I get this res=[ x] # that is [<space>x]
5
votes
7answers
132 views

Can I store a string into a single field in mySQL that I can echo in PHP, that also declares variables?

I have a .php page that has variables, each associated with dozens of different search criteria. I thought it would be easiest to just jam all the variables into the database as one gigantic string. ...
5
votes
2answers
775 views

Differences between echo, echo(), print and print() in PHP [closed]

Possible Duplicates: How are echo and print different in PHP? Is there any difference between ‘print’ and ‘echo’ in PHP? What’s the difference of ...
5
votes
2answers
2k views

What is the ASP.Net equivalent to PHP's Echo?

I want to 'echo' a string separated by delimeters like: sergio|tapia|1999|10am the Body of an HTML page. How can I achieve this? Thank you!
5
votes
1answer
250 views

echo that shell-escapes arguments

Is there a command that not just echos it's argument but also escapes them if needed (e.g. if a argument contains white space or a special character)? I'd need it in some shell magic where instead of ...
5
votes
3answers
1k views

Acoustic Echo Cancellation in Flash/Flex using native libraries

I have to implement AEC in Flex video conferencing application. I know that it can not be done directly in Flash. I'm thinking to write a native application or library that will do AEC outside Flex. ...
5
votes
2answers
2k views

PowerShell “echo on”

This is a duplicate of http://serverfault.com/questions/102098/powershell-script-showing-commands-run. I thought it would be more appropriate to ask this question here. I am playing around with ...
5
votes
2answers
222 views

Storing echoed strings in a variable in PHP

How to grab the string that a function echoes to a variable? I've go a function similar to this: function echoer() { echo 'foo'; } I cannot change it's source. What I would like to ...
4
votes
3answers
85 views

In my command-line, why does echo $0 return “-”?

When I type echo $0 I see - I expect to see bash or some filename, what does it mean if I just get a "-"?
4
votes
1answer
125 views

How can I only get the alt attribute of the a p tag in PHP?

I'm working on a script that echo's only the price. If I do: $alttag = $oNode['p']; echo $alttag; It will echo everything in <p></p>. So it will echo: roodmerk of cafeïnevrij pak 500 ...
4
votes
3answers
271 views

some item won't echo after putting some condition in php

from this link Echo problem when a different user logs in that i posted earlier, i managed to do or fix my problem. but somehow, there is a small error that have occurred. although my admin page is ...
4
votes
3answers
129 views

Is '<?=' the same as 'echo'?

I've found some page where people print strings on the web page with this: <?= 'hello world'; ?> Is this a faster way to print strings in one row of code or does it work different?
4
votes
3answers
164 views

How to echo an array multiple times in one page?

I was wondering if someone could help me with this problem. I want to print/echo the solution of the function multiple times on the same page. Is that possible? Here's my function: public function ...
4
votes
2answers
93 views

String concatenation in PHP

Is it possible to send some text message with an echo? I'm looking for something like: if($xml) echo $xml+"hello world; This is my PHP: [...]curl_setopt($curl, CURLOPT_URL, ...
4
votes
5answers
356 views

PHP sprintf vs. echo

I posted a question earlier tonight - PHP Wordpress quotes issue where some quotes were causing me some issues. An answer was posted suggesting using echo sprintf. This looked very clean and took ...
4
votes
2answers
502 views

Interview Question: Can we have an echo before header?

I appeared for php test, their I was asked one question for which I could not find the answer. The question is like this. echo "MESSI is injured!!"; header("Location:somepage.php"); Interviewer ...
4
votes
4answers
101 views

How can I display something during the execution of a SQL script on SQLServer?

For example. I have a database upgrade script for adding a column to a database table. It looks a little like this: IF NOT Exists(SELECT * FROM SysColumns sc, SysObjects so WHERE ...
4
votes
3answers
146 views

In PHP, why wasn't echo implemented as a function? (not echo vs. printf)

I'm just curious. In PHP, why wasn't echo implemented as a function? Why didn't PHP just give us printf and never tell about echo? Please note that: This is not a question about echo vs. printf. I ...
4
votes
4answers
1k views

Acoustic echo cancellation in Java

I'm implementing a VOIP application that uses pure Java. There is an echo problem that occurs when users do not use headsets (mostly on laptops with built-in microphones). What currently happens The ...
4
votes
6answers
1k views

How to flush output after each `echo` call?

I've a php script that only produces logs to the client. When I echo something, i wan't it to be transfered to client on-the-fly. (Because while the script is processing, the page is blank) I had ...
4
votes
2answers
574 views

How do I use inverted commas in the echo function in PHP?

How do I use inverted commas in the echo function in PHP? echo "<script type="text/javascript">"; doesnt work well. Thank you!
4
votes
6answers
2k views

PHP immediate echo

I have quite a long data mining script, and in parts of it I echo some information to the page (during a foreach loop, actually.) However I am noticing that the information is being sent to the ...
3
votes
3answers
67 views

How does echo actually work in Unix

When I type any key, normally, it is immediately echoed back to the std output i.e.my screen. If I have to enter a password, that says that it will not echo back, I cannot see the keys that I type. ...
3
votes
2answers
38 views

is it possible to echo an echo command into a new file?

I'm trying to use a batch file to create another batch file... it's a file I have to use quite often with a few variables changed each time. I'm running into an issue because in the batch I'm trying ...
3
votes
1answer
109 views

Using PDO to replace mysql_connect - help with formatting correctly?

This is my current page: <?php mysql_connect('localhost', 'root', 'mypass') or die (mysql_error()); mysql_select_db('radio1') or die (mysql_error()); $result = mysql_query("SELECT *, ...
3
votes
4answers
108 views

What is the Bash Escape Character “\c”?

What is the name and function of the \c escape character in Bash? What is its numeric value? I have seen that \cx is a control character, but what about plain \c? It seems that: echo -e "Hello ...
3
votes
1answer
276 views

Rules for escaping special characters when using MSDOS 'echo' command to append text to a file?

I would like to be able to append any text to a file using the MSDOS command line. AFAIK, the way to do it is with echo someText>>someFile.txt Since someText could contain any text, characters like ...
3
votes
4answers
152 views

Why should I prevent direct access to PHP files that do not echo anything?

For an example if I have a mail script or a script that writes to a database - scripts that do not echo anything important (other than a thank you, or an error message), but do a lot of important ...
3
votes
2answers
347 views

disable echo and print in php

This may seem like a funny question but in fact it's not, I would like to disable echo, print and and other functions that may output to the buffer such as readfile. The reason why I would like to do ...
3
votes
2answers
246 views

Escaping a batch file echo that starts with a forward slash and question mark

Bit of a tricky one. How can I correctly escape the following in a batch file? echo /? display this help text This particular combination of characters is treated as an "ECHO /?" command: ...
3
votes
2answers
87 views

How can I print a newline from within a bash function

I have the following piece of code inside a bash script file: #! /bin/sh # # Usage: # # f.sh <start_directory> <destination_directory> <prepare_directory> ...
3
votes
1answer
157 views

Disabling echo from webrick

How can I disable messages from webrick echoed on to the terminal? For the INFO messages that appear at the beginning, I was able to disable it by setting the Logger parameter so as: s = ...
3
votes
1answer
181 views

echo problems in PHP

I dont know how to repost questions so im just gonna link my old post here some item won't echo after putting some condition in php although some problems were solved there thanks to @Shinkou, ...

1 2 3 4 5 13