Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 406663
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T17:31:06+00:00 2026-05-12T17:31:06+00:00

Current image looks like <img src=images/example.jpg /> Now if img src do not have

  • 0

Current image looks like

<img src="images/example.jpg" />

Now if img src do not have the alt="", the code itself will replace the image like

<img src="images/example.jpg" alt="" />

How can be done with php?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T17:31:06+00:00Added an answer on May 12, 2026 at 5:31 pm

    Here’s an example of doing this with SimpleXML.

    <?php
    
    $html = '<html>
        <body>
            <img src="foo.jpg" />
        </body>
    </html>';
    
    $xml = new SimpleXMLElement($html);
    
    foreach ($xml->xpath('//img') as $img) {
        if (!array_key_exists('alt', $img->attributes())) {
            $img->addAttribute('alt', '');
        }
    }
    
    echo $xml->asXML();
    

    The output will be:

    <?xml version="1.0"?>
    <html>
        <body>
            <img src="foo.jpg" alt=""/>
        </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i'm using jquery-imagetool plugin for croping images. My jquery code looks like: $('div.image img').imagetool({
Anyone know how to retrieve the current image data (alt, src) via the changepicturecallback
My current code uploads image successfully but still it does not show Toast message
The code i current have is this. function update (){ latest_id = $('#image:first').data('position'); /*
I have some html5 canvas code to make an image, the current fillstyle is
My Registration page currently looks like the following: The current styling I have for
Here an example http://jsfiddle.net/7aVXc/ Let' say current image height is 400px . How do
This is my current demo .I am trying to load images dynamically and now
This is what my header looks like right now at http://www.bolistylus.com I am wanting
I've got very weird problem in my current project. The #head div looks like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.