배열
-
[PHP] 14. 배열 (Arrays) - PHP 강좌, PHP5Web/PHP 2015. 6. 13. 13:46
PHP 5 Arrays 1. What is an Array? 배열은 한개 이상의 값을 동시에 담을 수 있는 특별한 변수입니다. 항목의 목록을 갖는다면, 단일 변수로 저장을 할 것입니다 아래처럼: $cars1 = "Volvo"; $cars2 = "BMW"; $cars3 = "Toyota"; 그러나, 항목의 종류가 3개가 아니라 3000개이면? 일일이 단일 변수로 저장하기 어렵습니다. 해결책은 배열을 생성하는 것 입니다. 2. Create an Array in PHP PHP에서 array() 함수는 배열을 생성하는데 사용됩니다: array(); 3가지 타입의 배열이 존재합니다: - Indexed arrays: - Associative arrays: - Multidimensional arrays: 3. PHP..
-
[PHP] 8. 연산자 (Operators) - PHP 강좌, PHP5Web/PHP 2015. 6. 13. 13:42
PHP 5 Operators 1. PHP Operators 연산자(Operator)는 변수와 값을 연산을 수행하기 위해 사용됩니다. 2. PHP Arithmetic Operators PHP 산술(Arithmetic) 연산자는 숫자 값을 일반적인 산술 연산을 하기 위해 사용됩니다. OperatorNameExampleResultShow it+Addition$x + $ySum of $x and $yShow it ≫-Subtraction$x - $yDifference of $x and $yShow it ≫*Multiplication$x * $yProduct of $x and $yShow it ≫/Division$x / $yQuotient of $x and $yShow it ≫%Modulus$x % $yRemai..
-
[AngularJS] 2. 식(expression) - Angular JS 강좌Web/AngularJS 2015. 6. 12. 14:14
AngularJS Expressions AngularJS는 식(Expression)을 사용하여 데이터를 HTML과 연결합니다. 1. AngularJS Expressions AngularJS 식은 이중 괄호 안에 작성되어 집니다: {{ expression }} AngularJS 식은 ng-bind directive를 써서 데이터와 HTML을 연결합니다. AngularJS는 식이 쓰여진 곳에 정확히 데이터가 출력되어 질 것 입니다. AngularJS 식은 JavaScript 식과 거의 유사합니다. 1234567891011121314151617 My first expression: {{ 5 + 5 }} Colored by Color Scriptercs ng-app directive를 지운다면, HTML은 식을..