1)substr- მაგ: echo substr("Hello world",6); გადათვლის 6-ს და მე-7 ადგილიდან რაც იწყება დაგვიბეჭდავს მხოლოდ მაგ სიტყვას, ჩვენ შემთხვევაში-(world)
2)strpos- ამოწმებს რომელ პოზიციაზეა ჩვენს მიერ მითითებული ნებისმიერი რამ- მაგ: echo strpos("hello,world", ",")- მოძებნის სადაც მძიმეა და მძიმის შემდეგ რა სიტყვაც დარჩება დაგვიბეჭდავს იმ სიტყვას, ჩვენ შემთხვევაში- (world)
we have 2 way.
echo file ( file.name );
echo file_2 (there.is.no.file );
1) function file ( $filename ) {
$x = strpos ( $filename, "." );
$y = substr ( $filename, $x + 1 );
return $y;
}
result- "name"
2) function file_2 ( $filename ) {
$x = explode ( ".", $filename );
$y = end ($x); //end- დაბეჭდავს ბოლო სიტყვას
return $y;
}
result- "file"
<h2 id="section-1">Section 1</h2>
The id attribute is used to identify the element you want to target with the navigation link.
The value for the id attribute must be unique and surrounded by quotes.
Once the element you want to jump to has been marked with an id, you can target it with the anchor tag <a>
The hash character (#) is needed to tell the web browser that we are targeting a section of the same document.
<a href ="#s1">Jump to S1 </a>
<h2 id="s1">Section 1</h2>
ამოცანა გვეუბნება, რომ ჩვენს მიერ გადაცემულ ტექსტს მოვაშოროთ ზედმეტი გამოტოვებები.
we have 2 ways: first is that we can do this without cycle and second is that we can use "while" cycle.
first:
<php?
function string($text) {
// explode- Breaks the sentence when it sees an omission (გახლეჩს
წინადადებას როცა შეხვდება გამოტოვება.)
$something = explode ( ' ' , $text );
$count = count($something);
for ($i=0; $i < $count; $i++) {
// If it encounters an empty space somewhere, it will get up and use the unset function to cut this empty space ( თუ შეხვდება სადმე სიცარიელე მაშინ ადგება და unset ფუნქციით ამოჭრის ამ სიცარიელეს )
if ( !$something [$i] ){
unset($something [$i];
}
}
return implode ( ' ', $something );
}
$text = " hello m y name is gvanca ";
echo string($text);
// result- "hello my name is gvanca"
git add .
or git add --A
or git add --all
alternativly we can add each file by name:
git add <file name>
for remove added files from staging area:
git reset <filename>
or remove all files:
git reset
git add filename
ან საქაღალდეში არსებული ყველა ფაილის დამატებისას git add --a
3. git directory (repository) - committed ფაილები ანუ COMMIT ბრძანებით მართვის სისტემაში (git-ში) შენახული ფაილების გარემო, იგივე რეპოზიტორი, საცავი, საქაღალდე.git config git config --global user.name
git config --global user.email
ბრენჩის, სახელით "main", ნაგულისხმევად დაყენება
git config --global init.default branch main