Difference Between echo and print in PHP

Echo vs. Print PHP echo and print both are PHP Statements Both are used to displaying the output in PHP. What is echo The echo is a statement i.e used…

Read more »

What is difference between echo, print, and print_r in PHP with example?

Echo Statement:- The echo statement is used to output in display with or without parenthesis echo or echo() but no return value. Echo Statement faster than print Statement. ex:- Print…

Read more »
ant-clean-prepare-and-compile-tasks

Simple Ant Example – clean, prepare, and compile tasks

Sample Ant clean, prepare, and compile tasks <target name=”clean”> <echo>=== CLEAN ===</echo> <delete failonerror=”false”> <fileset dir=”${dest.dir}” includes=”**/*”/> </delete> <delete dir=”${temp.dir}” /> </target> <target name=”prepare” depends=”clean”> <echo>=== PREPARE ===</echo> <mkdir dir=”${dest.dir}”…

Read more »